32 lines
No EOL
555 B
CSS
32 lines
No EOL
555 B
CSS
.Tab {
|
|
cursor: pointer;
|
|
background: none;
|
|
border: none;
|
|
height: 100%;
|
|
max-width: min(calc(100% - 56px), 264px);
|
|
padding: 10px 24px;
|
|
font-size: 0.8135rem;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
transition: color 120ms var(--tutu-anim-curve-std);
|
|
|
|
:root:where([lang^="zh"],
|
|
[lang="zh"],
|
|
[lang^="kr"],
|
|
[lang="kr"],
|
|
[lang^="ja"],
|
|
[lang="ja"]) & {
|
|
font-size: 0.85rem;
|
|
}
|
|
}
|
|
|
|
.MuiToolbar-root .Tab {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&.focus,
|
|
&.Tabs-focus {
|
|
color: white;
|
|
}
|
|
} |