file-uploader.js
3 months ago
header-tabs.css
3 months ago
search-reulsts.js
3 months ago
tabs.css
3 months ago
tabs.js
3 months ago
tailwind.css
3 months ago
header-tabs.css
30 lines
| 1 | .advads-page .advads-header-tabs { |
| 2 | @apply flex border-b border-border -mx-5 mt-4 pl-4; |
| 3 | |
| 4 | a { |
| 5 | @apply flex items-center gap-x-2 text-base font-medium py-2.5 px-5 border-t border-l border-border no-underline bg-[#f5f4f4]; |
| 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 | @apply shadow-none outline-0 text-secondary-black bg-transparent; |
| 19 | } |
| 20 | |
| 21 | &.is-active { |
| 22 | @apply border-b border-b-[#f8f9fa] -mb-px; |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | + .advads-tab-content { |
| 27 | @apply -mx-5 py-6 px-5; |
| 28 | } |
| 29 | } |
| 30 |