mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
40 lines
627 B
SCSS
40 lines
627 B
SCSS
.action {
|
|
position: relative;
|
|
display: block;
|
|
padding: 0;
|
|
text-align: center;
|
|
color: $light-text;
|
|
&.discuss-link {
|
|
color: $blue-grey;
|
|
}
|
|
}
|
|
.action-icon {
|
|
font-size: 36px;
|
|
height: 36px;
|
|
display: block;
|
|
&:before {
|
|
position: relative;
|
|
top: -10px;
|
|
}
|
|
}
|
|
.action-label {
|
|
font-weight: bold;
|
|
display: block;
|
|
height: 20px;
|
|
line-height: 20px;
|
|
bottom: 5px;
|
|
left: 0;
|
|
font-size: 13px;
|
|
color: $light-text;
|
|
pointer-events: none;
|
|
// color: $red;
|
|
}
|
|
.action-count {
|
|
position: absolute;
|
|
top: 4px;
|
|
display: block;
|
|
width: 100%;
|
|
height: 20px;
|
|
line-height: 20px;
|
|
font-size: 14px;
|
|
}
|