header-tabs.scss
1 year ago
header.scss
1 year ago
post-type-list.scss
1 week ago
radio-switch.scss
1 year ago
spinner.scss
1 year ago
switch.scss
1 year ago
tab-card.scss
1 year ago
header-tabs.scss
34 lines
| 1 | .#{$namespace}-wrap .#{$namespace}-header-tabs { |
| 2 | @apply relative flex flex-row border-b border-advads -mx-5 pt-8 pl-4; |
| 3 | |
| 4 | a { |
| 5 | @apply text-base font-medium py-2 px-4 border border-advads border-b-0 border-r-0; |
| 6 | |
| 7 | &:first-child { |
| 8 | @apply rounded-tl; |
| 9 | } |
| 10 | |
| 11 | &:last-of-type { |
| 12 | @apply border-r rounded-tr; |
| 13 | } |
| 14 | |
| 15 | &:hover, |
| 16 | &:focus, |
| 17 | &.is-active { |
| 18 | color: #1a1e22; |
| 19 | outline: none; |
| 20 | background: #f8f9fa; |
| 21 | box-shadow: none; |
| 22 | } |
| 23 | |
| 24 | &.is-active { |
| 25 | border-bottom: 1px solid #f8f9fa; |
| 26 | margin-bottom: -1px; |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | + .#{$namespace}-tab-content { |
| 31 | @apply -mx-5 py-6 px-5; |
| 32 | } |
| 33 | } |
| 34 |