Skip to content

Commit

Permalink
fix border on create or join organization tab selection
Browse files Browse the repository at this point in the history
  • Loading branch information
roncodes committed Mar 12, 2024
1 parent 813241f commit b18f879
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions addon/components/modals/create-or-join-org.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<div class="modal-body-container">
<InputGroup>
<div class="space-x-4 flex">
<button type="button" class="outline-none flex-1 rounded-lg bg-white dark:bg-gray-900 border-2 border-transparent px-4 py-2 flex items-center justify-center {{if (eq @options.action "join") 'border-blue-500'}}" {{on "click" (fn @options.changeAction "join")}}>
<button type="button" class="outline-none flex-1 rounded-lg bg-white dark:bg-gray-900 border-2 px-4 py-2 flex items-center justify-center {{if (eq @options.action "join") 'border-blue-500' 'border-transparent'}}" {{on "click" (fn @options.changeAction "join")}}>
<div class="mr-2.5">
<FaIcon @icon="handshake" @size="xl" class="text-blue-500" />
</div>
<div>
<span class="text-gray-900 dark:text-gray-100 text-lg">Join an Organization</span>
</div>
</button>
<button type="button" class="outline-none flex-1 rounded-lg bg-white dark:bg-gray-900 border-2 border-transparent px-4 py-2 flex items-center justify-center {{if (eq @options.action "create") 'border-blue-500'}}" {{on "click" (fn @options.changeAction "create")}}>
<button type="button" class="outline-none flex-1 rounded-lg bg-white dark:bg-gray-900 border-2 px-4 py-2 flex items-center justify-center {{if (eq @options.action "create") 'border-blue-500' 'border-transparent'}}" {{on "click" (fn @options.changeAction "create")}}>
<div class="mr-2.5">
<FaIcon @icon="building" @size="xl" class="text-blue-500" />
</div>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fleetbase/ember-ui",
"version": "0.2.11",
"version": "0.2.12",
"description": "Fleetbase UI provides all the interface components, helpers, services and utilities for building a Fleetbase extension into the Console.",
"keywords": [
"fleetbase-ui",
Expand Down

0 comments on commit b18f879

Please sign in to comment.