| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- .root {
- display: flex;
- flex-direction: column;
- gap: 8px;
- }
- .label {
- font-size: 12px;
- font-weight: 500;
- color: var(--theme-paragraph-subtle);
- text-transform: uppercase;
- letter-spacing: 0.5px;
- }
- .buttons {
- display: flex;
- gap: 6px;
- background: var(--theme-background-secondary);
- padding: 4px;
- border-radius: 8px;
- border: 1px solid var(--theme-border-subtle);
- }
- .button {
- display: flex;
- align-items: center;
- justify-content: center;
- gap: 6px;
- padding: 8px 16px;
- border: none;
- background: transparent;
- color: var(--theme-paragraph);
- font-size: 13px;
- font-weight: 500;
- border-radius: 6px;
- cursor: pointer;
- transition: all 0.2s ease;
- white-space: nowrap;
- &:hover {
- background: var(--theme-background);
- color: var(--theme-headline);
- }
- &.active {
- background: var(--theme-button);
- color: var(--theme-button-text);
- box-shadow: 0 1px 3px var(--theme-shadow);
- }
- }
- .buttonLabel {
- @media (max-width: 640px) {
- display: none;
- }
- }
|