mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-12-12 23:38:20 +00:00
29 lines
520 B
SCSS
29 lines
520 B
SCSS
@import 'variables';
|
|
|
|
.glitch.glitch__status__action-bar {
|
|
display: block;
|
|
height: 1.25em;
|
|
font-size: 1.25em;
|
|
line-height: 1;
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
white-space: nowrap;
|
|
|
|
// Dropdown style override for centering on the icon
|
|
.dropdown--active {
|
|
position: relative;
|
|
|
|
.dropdown__content.dropdown__right {
|
|
left: calc(50% + 3px);
|
|
right: initial;
|
|
transform: translate(-50%, 0);
|
|
top: 22px;
|
|
}
|
|
|
|
&::after {
|
|
right: 1px;
|
|
bottom: -2px;
|
|
}
|
|
}
|
|
}
|