* add with-theme hoc * add dark theme styles for components * add toggle theme button to the dev demo page * add info about widget themes to README
20 lines
247 B
SCSS
20 lines
247 B
SCSS
.blocked-users__action {
|
|
margin-left: 8px;
|
|
font-weight: 700;
|
|
color: #0aa;
|
|
cursor: pointer;
|
|
|
|
@media (hover: hover) {
|
|
opacity: 0;
|
|
}
|
|
|
|
&:hover {
|
|
color: #06c5c5;
|
|
}
|
|
|
|
&::before {
|
|
content: '•';
|
|
margin-right: 8px;
|
|
}
|
|
}
|