mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 02:00:29 +08:00
40 lines
440 B
CSS
40 lines
440 B
CSS
.root {
|
|
}
|
|
|
|
.button {
|
|
composes: buttonReset from "coral-framework/styles/reset.css";
|
|
}
|
|
|
|
.button:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.arrowIcon {
|
|
font-size: 14px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
|
|
@custom-media --small-viewport (max-width: 425px);
|
|
|
|
.label {
|
|
display: inline-block;
|
|
}
|
|
|
|
.icon {
|
|
vertical-align: middle;
|
|
display: none;
|
|
}
|
|
|
|
@media (--small-viewport) {
|
|
.label {
|
|
display: none;
|
|
}
|
|
.icon {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
|
|
|