stremio-web/src/common/MetaPreview/ActionButton/styles.less
2019-08-26 18:44:40 +03:00

36 lines
No EOL
722 B
Text

.action-button-container {
display: flex;
flex-direction: column;
justify-content: center;
&:hover {
background-color: var(--color-surfacedarker60);
}
.icon {
flex: none;
flex-basis: 50%;
padding-top: 10%;
fill: var(--color-surfacelighter);
&:only-child {
padding: 5% 0;
}
}
.label-container {
flex: none;
flex-basis: 50%;
display: flex;
flex-direction: row;
align-items: center;
.label {
flex: 1;
padding: 0 0.2rem;
max-height: 2.4em;
text-align: center;
color: var(--color-surfacelighter);
}
}
}