2025-03-04 20:30:25 +02:00
|
|
|
import {
|
|
|
|
|
fontFace,
|
|
|
|
|
globalFontFace,
|
|
|
|
|
globalKeyframes,
|
|
|
|
|
globalStyle,
|
|
|
|
|
keyframes,
|
|
|
|
|
style,
|
|
|
|
|
styleVariants,
|
|
|
|
|
} from '@vanilla-extract/css';
|
|
|
|
|
import { recipe } from '@vanilla-extract/recipes';
|
|
|
|
|
|
2025-03-06 06:23:54 +02:00
|
|
|
// fontFaces
|
|
|
|
|
export const theFont = fontFace({
|
2025-03-04 20:30:25 +02:00
|
|
|
// Comment to test that the linter doesn't remove it
|
2025-03-06 06:23:54 +02:00
|
|
|
src: ['url("/fonts/MyFont.woff2") format("woff2")', 'url("/fonts/MyFont.woff") format("woff")'],
|
|
|
|
|
ascentOverride: '90%',
|
|
|
|
|
descentOverride: '10%',
|
2025-03-08 23:05:23 +02:00
|
|
|
fontDisplay: 'swap',
|
2025-03-06 06:23:54 +02:00
|
|
|
fontFeatureSettings: '"liga" 1',
|
2025-03-08 23:05:23 +02:00
|
|
|
fontStretch: 'normal',
|
|
|
|
|
fontStyle: 'normal',
|
|
|
|
|
fontVariant: 'normal',
|
2025-03-06 06:23:54 +02:00
|
|
|
fontVariationSettings: '"wght" 400',
|
2025-03-08 23:05:23 +02:00
|
|
|
fontWeight: '400 700',
|
|
|
|
|
lineGapOverride: '10%',
|
|
|
|
|
sizeAdjust: '90%',
|
|
|
|
|
unicodeRange:
|
|
|
|
|
'U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD',
|
2025-03-04 20:30:25 +02:00
|
|
|
});
|
|
|
|
|
|
2025-03-06 06:23:54 +02:00
|
|
|
globalFontFace('GlobalFont', {
|
|
|
|
|
// Comment to test that the linter doesn't remove it
|
|
|
|
|
src: ['url("/fonts/MyFont.woff2") format("woff2")', 'url("/fonts/MyFont.woff") format("woff")'],
|
|
|
|
|
ascentOverride: '90%',
|
|
|
|
|
descentOverride: '10%',
|
2025-03-08 23:05:23 +02:00
|
|
|
fontDisplay: 'swap',
|
2025-03-06 06:23:54 +02:00
|
|
|
fontFeatureSettings: '"liga" 1',
|
2025-03-08 23:05:23 +02:00
|
|
|
fontStretch: 'normal',
|
|
|
|
|
fontStyle: 'normal',
|
|
|
|
|
fontVariant: 'normal',
|
2025-03-06 06:23:54 +02:00
|
|
|
fontVariationSettings: '"wght" 400',
|
2025-03-08 23:05:23 +02:00
|
|
|
fontWeight: '400 700',
|
|
|
|
|
lineGapOverride: '10%',
|
|
|
|
|
sizeAdjust: '90%',
|
|
|
|
|
unicodeRange:
|
|
|
|
|
'U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD',
|
2025-03-04 20:30:25 +02:00
|
|
|
});
|
|
|
|
|
|
2025-03-06 06:23:54 +02:00
|
|
|
// keyframes
|
|
|
|
|
export const spinster = globalKeyframes('spin', {
|
2025-03-04 20:30:25 +02:00
|
|
|
// Comment to test that the linter doesn't remove it
|
2025-03-06 06:23:54 +02:00
|
|
|
from: {
|
|
|
|
|
width: '100%',
|
|
|
|
|
margin: '0',
|
|
|
|
|
fontSize: 'large',
|
|
|
|
|
border: 'Background',
|
|
|
|
|
borderRight: 'ActiveBorder',
|
|
|
|
|
borderLeft: 'ActiveBorder',
|
|
|
|
|
borderRadius: 'initial',
|
|
|
|
|
borderBottomLeftRadius: 'initial',
|
|
|
|
|
borderBottomRightRadius: 'initial',
|
|
|
|
|
boxShadow: 'none',
|
|
|
|
|
boxSizing: 'inherit',
|
|
|
|
|
position: 'relative',
|
|
|
|
|
right: 'inherit',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
gap: 'revert',
|
|
|
|
|
transform: 'none',
|
|
|
|
|
outline: 'none',
|
|
|
|
|
backgroundColor: 'initial',
|
|
|
|
|
cursor: 'pointer',
|
|
|
|
|
color: 'red',
|
|
|
|
|
},
|
2025-03-04 20:30:25 +02:00
|
|
|
|
|
|
|
|
// Comment to test that the linter doesn't remove it
|
2025-03-06 06:23:54 +02:00
|
|
|
to: {
|
2025-03-04 20:30:25 +02:00
|
|
|
// Comment to test that the linter doesn't remove it
|
2025-03-06 06:23:54 +02:00
|
|
|
width: '100%',
|
2025-03-04 20:30:25 +02:00
|
|
|
margin: '0',
|
|
|
|
|
fontSize: 'large',
|
|
|
|
|
border: 'Background',
|
|
|
|
|
borderRight: 'ActiveBorder',
|
|
|
|
|
borderLeft: 'ActiveBorder',
|
|
|
|
|
borderRadius: 'initial',
|
|
|
|
|
borderBottomLeftRadius: 'initial',
|
|
|
|
|
borderBottomRightRadius: 'initial',
|
|
|
|
|
boxShadow: 'none',
|
|
|
|
|
boxSizing: 'inherit',
|
|
|
|
|
position: 'relative',
|
|
|
|
|
right: 'inherit',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
gap: 'revert',
|
|
|
|
|
transform: 'none',
|
|
|
|
|
outline: 'none',
|
|
|
|
|
backgroundColor: 'initial',
|
|
|
|
|
cursor: 'pointer',
|
|
|
|
|
color: 'red',
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
2025-03-06 06:23:54 +02:00
|
|
|
export const starter = keyframes({
|
2025-03-04 20:30:25 +02:00
|
|
|
// Comment to test that the linter doesn't remove it
|
2025-03-06 06:23:54 +02:00
|
|
|
'0%': {
|
|
|
|
|
width: '100%',
|
2025-03-04 20:30:25 +02:00
|
|
|
margin: '0',
|
|
|
|
|
fontSize: 'large',
|
|
|
|
|
border: 'Background',
|
|
|
|
|
borderRight: 'ActiveBorder',
|
|
|
|
|
borderLeft: 'ActiveBorder',
|
|
|
|
|
borderRadius: 'initial',
|
|
|
|
|
borderBottomLeftRadius: 'initial',
|
|
|
|
|
borderBottomRightRadius: 'initial',
|
2025-03-06 06:23:54 +02:00
|
|
|
boxShadow: 'none',
|
2025-03-04 20:30:25 +02:00
|
|
|
boxSizing: 'inherit',
|
|
|
|
|
position: 'relative',
|
|
|
|
|
right: 'inherit',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
gap: 'revert',
|
|
|
|
|
transform: 'none',
|
|
|
|
|
outline: 'none',
|
|
|
|
|
backgroundColor: 'initial',
|
|
|
|
|
cursor: 'pointer',
|
|
|
|
|
color: 'red',
|
|
|
|
|
},
|
|
|
|
|
|
2025-03-06 06:23:54 +02:00
|
|
|
// Comment to test that the linter doesn't remove it
|
|
|
|
|
'100%': {
|
|
|
|
|
// Comment to test that the linter doesn't remove it
|
|
|
|
|
width: '100%',
|
2025-03-04 20:30:25 +02:00
|
|
|
margin: '0',
|
|
|
|
|
fontSize: 'large',
|
|
|
|
|
border: 'Background',
|
|
|
|
|
borderRight: 'ActiveBorder',
|
|
|
|
|
borderLeft: 'ActiveBorder',
|
|
|
|
|
borderRadius: 'initial',
|
|
|
|
|
borderBottomLeftRadius: 'initial',
|
|
|
|
|
borderBottomRightRadius: 'initial',
|
|
|
|
|
boxShadow: 'none',
|
|
|
|
|
boxSizing: 'inherit',
|
|
|
|
|
position: 'relative',
|
|
|
|
|
right: 'inherit',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
gap: 'revert',
|
|
|
|
|
transform: 'none',
|
|
|
|
|
outline: 'none',
|
|
|
|
|
backgroundColor: 'initial',
|
|
|
|
|
cursor: 'pointer',
|
|
|
|
|
color: 'red',
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
2025-03-06 06:23:54 +02:00
|
|
|
globalStyle('*, ::before, ::after', {
|
2025-03-04 20:30:25 +02:00
|
|
|
// Comment to test that the linter doesn't remove it
|
2025-03-06 06:23:54 +02:00
|
|
|
width: '100%',
|
|
|
|
|
margin: '0',
|
|
|
|
|
fontSize: 'large',
|
|
|
|
|
border: 'Background',
|
|
|
|
|
borderRight: 'ActiveBorder',
|
|
|
|
|
borderLeft: 'ActiveBorder',
|
|
|
|
|
borderRadius: 'initial',
|
|
|
|
|
borderBottomLeftRadius: 'initial',
|
|
|
|
|
borderBottomRightRadius: 'initial',
|
|
|
|
|
boxSizing: 'inherit',
|
|
|
|
|
position: 'relative',
|
|
|
|
|
right: 'inherit',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
gap: 'revert',
|
|
|
|
|
transform: 'none',
|
|
|
|
|
outline: 'none',
|
|
|
|
|
backgroundColor: 'initial',
|
|
|
|
|
cursor: 'pointer',
|
|
|
|
|
color: 'red',
|
2025-03-04 20:30:25 +02:00
|
|
|
});
|
|
|
|
|
|
2025-03-06 06:23:54 +02:00
|
|
|
// style with an array
|
2025-03-04 20:30:25 +02:00
|
|
|
const accordionContentBase = style([
|
|
|
|
|
// Comment to test that the linter doesn't remove it
|
|
|
|
|
{
|
|
|
|
|
// Comment to test that the linter doesn't remove it
|
2025-03-06 06:23:54 +02:00
|
|
|
width: '100%',
|
2025-03-04 20:30:25 +02:00
|
|
|
margin: '0',
|
|
|
|
|
fontSize: 'large',
|
|
|
|
|
border: 'Background',
|
|
|
|
|
borderRight: 'ActiveBorder',
|
|
|
|
|
borderLeft: 'ActiveBorder',
|
|
|
|
|
borderRadius: 'initial',
|
|
|
|
|
borderBottomLeftRadius: 'initial',
|
|
|
|
|
borderBottomRightRadius: 'initial',
|
|
|
|
|
boxShadow: 'none',
|
|
|
|
|
boxSizing: 'inherit',
|
|
|
|
|
position: 'relative',
|
|
|
|
|
right: 'inherit',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
gap: 'revert',
|
|
|
|
|
transform: 'none',
|
|
|
|
|
outline: 'none',
|
|
|
|
|
backgroundColor: 'initial',
|
|
|
|
|
cursor: 'pointer',
|
|
|
|
|
color: 'red',
|
|
|
|
|
|
2025-03-06 06:23:54 +02:00
|
|
|
// special selector to test that the linter doesn't remove it
|
2025-03-04 20:30:25 +02:00
|
|
|
'@supports': {
|
|
|
|
|
'(hanging-punctuation: first) and (font: -apple-system-body) and (-webkit-appearance: none)': {
|
|
|
|
|
// Comment to test that the linter doesn't remove it
|
2025-03-06 06:23:54 +02:00
|
|
|
width: '100%',
|
2025-03-04 20:30:25 +02:00
|
|
|
margin: '0',
|
|
|
|
|
fontSize: 'large',
|
|
|
|
|
border: 'Background',
|
|
|
|
|
borderRight: 'ActiveBorder',
|
|
|
|
|
borderLeft: 'ActiveBorder',
|
|
|
|
|
borderRadius: 'initial',
|
|
|
|
|
borderBottomLeftRadius: 'initial',
|
|
|
|
|
borderBottomRightRadius: 'initial',
|
|
|
|
|
boxShadow: 'none',
|
|
|
|
|
boxSizing: 'inherit',
|
|
|
|
|
position: 'relative',
|
|
|
|
|
right: 'inherit',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
gap: 'revert',
|
|
|
|
|
transform: 'none',
|
|
|
|
|
outline: 'none',
|
|
|
|
|
backgroundColor: 'initial',
|
|
|
|
|
cursor: 'pointer',
|
|
|
|
|
color: 'red',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
export const accordionContent = recipe({
|
|
|
|
|
// Comment to test that the linter doesn't remove it
|
|
|
|
|
base: accordionContentBase,
|
|
|
|
|
// Comment to test that the linter doesn't remove it
|
|
|
|
|
variants: {
|
|
|
|
|
// Comment to test that the linter doesn't remove it
|
|
|
|
|
isOpen: {
|
|
|
|
|
// Comment to test that the linter doesn't remove it
|
|
|
|
|
false: {
|
|
|
|
|
// Comment to test that the linter doesn't remove it
|
2025-03-06 06:23:54 +02:00
|
|
|
width: '100%',
|
2025-03-04 20:30:25 +02:00
|
|
|
margin: '0',
|
|
|
|
|
fontSize: 'large',
|
|
|
|
|
border: 'Background',
|
|
|
|
|
borderRight: 'ActiveBorder',
|
|
|
|
|
borderLeft: 'ActiveBorder',
|
|
|
|
|
borderRadius: 'initial',
|
|
|
|
|
borderBottomLeftRadius: 'initial',
|
|
|
|
|
borderBottomRightRadius: 'initial',
|
|
|
|
|
boxShadow: 'none',
|
|
|
|
|
boxSizing: 'inherit',
|
|
|
|
|
position: 'relative',
|
|
|
|
|
right: 'inherit',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
gap: 'revert',
|
|
|
|
|
transform: 'none',
|
|
|
|
|
outline: 'none',
|
|
|
|
|
backgroundColor: 'initial',
|
|
|
|
|
cursor: 'pointer',
|
|
|
|
|
color: 'red',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
true: {
|
2025-03-06 06:23:54 +02:00
|
|
|
width: '100%',
|
2025-03-04 20:30:25 +02:00
|
|
|
margin: '0',
|
|
|
|
|
fontSize: 'large',
|
|
|
|
|
border: 'Background',
|
|
|
|
|
borderRight: 'ActiveBorder',
|
|
|
|
|
borderLeft: 'ActiveBorder',
|
|
|
|
|
borderRadius: 'initial',
|
|
|
|
|
borderBottomLeftRadius: 'initial',
|
|
|
|
|
borderBottomRightRadius: 'initial',
|
|
|
|
|
boxShadow: 'none',
|
|
|
|
|
boxSizing: 'inherit',
|
|
|
|
|
position: 'relative',
|
|
|
|
|
right: 'inherit',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
gap: 'revert',
|
|
|
|
|
transform: 'none',
|
|
|
|
|
outline: 'none',
|
|
|
|
|
backgroundColor: 'initial',
|
|
|
|
|
cursor: 'pointer',
|
|
|
|
|
color: 'red',
|
|
|
|
|
|
2025-03-06 06:23:54 +02:00
|
|
|
// pseudo selector inside a variant
|
|
|
|
|
':hover': {
|
2025-03-04 20:30:25 +02:00
|
|
|
// Comment to test that the linter doesn't remove it
|
2025-03-06 06:23:54 +02:00
|
|
|
width: '100%',
|
2025-03-04 20:30:25 +02:00
|
|
|
margin: '0',
|
|
|
|
|
fontSize: 'large',
|
|
|
|
|
border: 'Background',
|
|
|
|
|
borderRight: 'ActiveBorder',
|
|
|
|
|
borderLeft: 'ActiveBorder',
|
|
|
|
|
borderRadius: 'initial',
|
|
|
|
|
borderBottomLeftRadius: 'initial',
|
|
|
|
|
borderBottomRightRadius: 'initial',
|
|
|
|
|
boxShadow: 'none',
|
|
|
|
|
boxSizing: 'inherit',
|
|
|
|
|
position: 'relative',
|
|
|
|
|
right: 'inherit',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
gap: 'revert',
|
|
|
|
|
transform: 'none',
|
|
|
|
|
outline: 'none',
|
|
|
|
|
backgroundColor: 'initial',
|
|
|
|
|
cursor: 'pointer',
|
|
|
|
|
color: 'red',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
2025-03-06 06:23:54 +02:00
|
|
|
export const item = style({
|
|
|
|
|
width: '100%',
|
2025-03-04 20:30:25 +02:00
|
|
|
margin: '0',
|
|
|
|
|
fontSize: 'large',
|
|
|
|
|
border: 'Background',
|
|
|
|
|
borderRight: 'ActiveBorder',
|
|
|
|
|
borderLeft: 'ActiveBorder',
|
|
|
|
|
borderRadius: 'initial',
|
|
|
|
|
borderBottomLeftRadius: 'initial',
|
|
|
|
|
borderBottomRightRadius: 'initial',
|
|
|
|
|
boxSizing: 'inherit',
|
|
|
|
|
position: 'relative',
|
|
|
|
|
right: 'inherit',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
gap: 'revert',
|
|
|
|
|
transform: 'none',
|
|
|
|
|
outline: 'none',
|
|
|
|
|
backgroundColor: 'initial',
|
|
|
|
|
cursor: 'pointer',
|
|
|
|
|
color: 'red',
|
|
|
|
|
|
2025-03-06 06:23:54 +02:00
|
|
|
// pseudo selector inside a style
|
|
|
|
|
':focus-visible': {
|
|
|
|
|
// Comment to test that the linter doesn't remove it
|
|
|
|
|
width: '100%',
|
2025-03-04 20:30:25 +02:00
|
|
|
margin: '0',
|
|
|
|
|
fontSize: 'large',
|
|
|
|
|
border: 'Background',
|
|
|
|
|
borderRight: 'ActiveBorder',
|
|
|
|
|
borderLeft: 'ActiveBorder',
|
|
|
|
|
borderRadius: 'initial',
|
|
|
|
|
borderBottomLeftRadius: 'initial',
|
|
|
|
|
borderBottomRightRadius: 'initial',
|
|
|
|
|
boxShadow: 'none',
|
|
|
|
|
boxSizing: 'inherit',
|
|
|
|
|
position: 'relative',
|
|
|
|
|
right: 'inherit',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
gap: 'revert',
|
|
|
|
|
transform: 'none',
|
|
|
|
|
outline: 'none',
|
|
|
|
|
backgroundColor: 'initial',
|
|
|
|
|
cursor: 'pointer',
|
|
|
|
|
color: 'red',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
selectors: {
|
|
|
|
|
// Comment to test that the linter doesn't remove it
|
|
|
|
|
'&[data-pressed]': {
|
|
|
|
|
// Comment to test that the linter doesn't remove it
|
2025-03-06 06:23:54 +02:00
|
|
|
width: '100%',
|
2025-03-04 20:30:25 +02:00
|
|
|
margin: '0',
|
|
|
|
|
fontSize: 'large',
|
|
|
|
|
border: 'Background',
|
|
|
|
|
borderRight: 'ActiveBorder',
|
|
|
|
|
borderLeft: 'ActiveBorder',
|
|
|
|
|
borderRadius: 'initial',
|
|
|
|
|
borderBottomLeftRadius: 'initial',
|
|
|
|
|
borderBottomRightRadius: 'initial',
|
|
|
|
|
boxShadow: 'none',
|
|
|
|
|
boxSizing: 'inherit',
|
|
|
|
|
position: 'relative',
|
|
|
|
|
right: 'inherit',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
gap: 'revert',
|
|
|
|
|
transform: 'none',
|
|
|
|
|
outline: 'none',
|
|
|
|
|
backgroundColor: 'initial',
|
|
|
|
|
cursor: 'pointer',
|
|
|
|
|
color: 'red',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
2025-03-06 06:23:54 +02:00
|
|
|
export const selectButtonVariants = styleVariants({
|
2025-03-04 20:30:25 +02:00
|
|
|
// Comment to test that the linter doesn't remove it
|
2025-03-06 06:23:54 +02:00
|
|
|
bordered: {
|
|
|
|
|
// Comment to test that the linter doesn't remove it
|
|
|
|
|
width: '100%',
|
|
|
|
|
margin: '0',
|
|
|
|
|
fontSize: 'large',
|
2025-03-04 20:30:25 +02:00
|
|
|
border: 'Background',
|
2025-03-06 06:23:54 +02:00
|
|
|
borderRight: 'ActiveBorder',
|
2025-03-04 20:30:25 +02:00
|
|
|
borderLeft: 'ActiveBorder',
|
|
|
|
|
borderRadius: 'initial',
|
|
|
|
|
borderBottomLeftRadius: 'initial',
|
|
|
|
|
borderBottomRightRadius: 'initial',
|
|
|
|
|
boxSizing: 'inherit',
|
|
|
|
|
position: 'relative',
|
|
|
|
|
right: 'inherit',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
gap: 'revert',
|
|
|
|
|
transform: 'none',
|
2025-03-06 06:23:54 +02:00
|
|
|
outline: 'none',
|
|
|
|
|
backgroundColor: 'initial',
|
|
|
|
|
cursor: 'pointer',
|
|
|
|
|
color: 'red',
|
2025-03-04 20:30:25 +02:00
|
|
|
},
|
|
|
|
|
|
2025-03-06 06:23:54 +02:00
|
|
|
borderless: {
|
|
|
|
|
width: '100%',
|
|
|
|
|
margin: '0',
|
|
|
|
|
fontSize: 'large',
|
2025-03-04 20:30:25 +02:00
|
|
|
border: 'Background',
|
2025-03-06 06:23:54 +02:00
|
|
|
borderRight: 'ActiveBorder',
|
2025-03-04 20:30:25 +02:00
|
|
|
borderLeft: 'ActiveBorder',
|
|
|
|
|
borderRadius: 'initial',
|
2025-03-06 06:23:54 +02:00
|
|
|
borderBottomLeftRadius: 'initial',
|
|
|
|
|
borderBottomRightRadius: 'initial',
|
2025-03-04 20:30:25 +02:00
|
|
|
boxShadow: 'none',
|
|
|
|
|
boxSizing: 'inherit',
|
|
|
|
|
position: 'relative',
|
|
|
|
|
right: 'inherit',
|
2025-03-06 06:23:54 +02:00
|
|
|
display: 'flex',
|
|
|
|
|
gap: 'revert',
|
2025-03-04 20:30:25 +02:00
|
|
|
transform: 'none',
|
2025-03-06 06:23:54 +02:00
|
|
|
outline: 'none',
|
|
|
|
|
backgroundColor: 'initial',
|
|
|
|
|
cursor: 'pointer',
|
|
|
|
|
color: 'red',
|
2025-03-04 20:30:25 +02:00
|
|
|
},
|
|
|
|
|
});
|