mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-30 19:08:48 +00:00
33 lines
No EOL
686 B
Text
33 lines
No EOL
686 B
Text
.button {
|
|
display: inline-flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
padding: 0 1.2em;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background-color: var(--color-backgrounddark20);
|
|
}
|
|
|
|
&:global(.active) {
|
|
background-color: var(--color-backgrounddark);
|
|
}
|
|
|
|
.icon {
|
|
height: 1.2em;
|
|
margin-right: 0.6em;
|
|
fill: var(--color-surfacelighter);
|
|
}
|
|
|
|
.label {
|
|
flex: 1;
|
|
height: 1.4em;
|
|
line-height: 1.4em;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
text-transform: capitalize;
|
|
color: var(--color-surfacelighter);
|
|
}
|
|
} |