stremio-web/src/common/NavBar/NavBarButton/styles.less
2019-04-25 13:21:56 +03:00

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);
}
}