-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from nashtech-garage/feat/variable-global
Feat: variable global styling
- Loading branch information
Showing
20 changed files
with
578 additions
and
437 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 27 additions & 27 deletions
54
apps/base-ui-toolkit-react/src/components/atoms/inputs/select/select.module.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
.select { | ||
&-theme { | ||
&-theme { | ||
&__scroll::-webkit-scrollbar { | ||
width: 4px; | ||
} | ||
&__scroll::-webkit-scrollbar-track { | ||
background: white; | ||
} | ||
&__scroll::-webkit-scrollbar-thumb { | ||
@apply rounded-sm bg-primary; | ||
} | ||
|
||
&--active { | ||
@apply bg-transparent text-primary border-b-2 border-primary; | ||
} | ||
|
||
&--hover { | ||
@apply hover:text-primary hover:bg-white bg-white; | ||
} | ||
|
||
&__option { | ||
@apply py-5 border-b border-gray-300; | ||
} | ||
} | ||
|
||
&__scroll::-webkit-scrollbar { | ||
width: 4px; | ||
width: 4px; | ||
} | ||
&__scroll::-webkit-scrollbar-track { | ||
background: white; | ||
background: white; | ||
} | ||
&__scroll::-webkit-scrollbar-thumb { | ||
@apply rounded-sm bg-crimson-default; | ||
} | ||
|
||
&--active { | ||
@apply bg-transparent text-crimson-default border-b-2 border-crimson-default; | ||
} | ||
|
||
&--hover { | ||
@apply hover:text-crimson-default hover:bg-white bg-white; | ||
@apply rounded-sm bg-success; | ||
} | ||
|
||
&__option { | ||
@apply py-5 border-b border-gray-300; | ||
} | ||
} | ||
|
||
&__scroll::-webkit-scrollbar { | ||
width: 4px; | ||
} | ||
&__scroll::-webkit-scrollbar-track { | ||
background: white; | ||
} | ||
&__scroll::-webkit-scrollbar-thumb { | ||
@apply rounded-sm bg-green-default; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 16 additions & 16 deletions
32
apps/base-ui-toolkit-react/src/components/molecules/tabs/tab.module.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
.tab-theme { | ||
@apply w-full; | ||
@apply overflow-x-auto md:overflow-hidden; | ||
@apply w-full; | ||
@apply overflow-x-auto md:overflow-hidden; | ||
|
||
ul { | ||
@apply w-full xl:w-1/2; | ||
ul { | ||
@apply w-full xl:w-1/2; | ||
|
||
li { | ||
margin-right: 0; | ||
@apply border-0; | ||
li { | ||
margin-right: 0; | ||
@apply border-0; | ||
} | ||
} | ||
} | ||
|
||
&__item { | ||
@apply text-center block text-crimson-default rounded-none; | ||
@apply hover:bg-transparent hover:border-b-2 hover:border-crimson-default; | ||
@apply text-sm md:text-xl uppercase italic; | ||
&__item { | ||
@apply text-center block text-primary rounded-none; | ||
@apply hover:bg-transparent hover:border-b-2 hover:border-primary; | ||
@apply text-sm md:text-xl uppercase italic; | ||
|
||
&--active { | ||
@apply border-crimson-default border-b-2; | ||
@apply bg-transparent; | ||
&--active { | ||
@apply border-primary border-b-2; | ||
@apply bg-transparent; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.