mirror of
https://github.com/funamitech/mastodon
synced 2025-01-11 12:24:12 +09:00
14 lines
510 B
SCSS
14 lines
510 B
SCSS
|
/* Add background color for the compose form */
|
||
|
/* stylelint-disable-next-line no-duplicate-selectors */
|
||
|
.layout-single-column .compose-form .compose-form__autosuggest-wrapper,
|
||
|
.layout-single-column .compose-form .compose-form__buttons-wrapper {
|
||
|
background-color: var(--color-mud);
|
||
|
border-color: var(--color-mud);
|
||
|
padding-top: 0;
|
||
|
}
|
||
|
|
||
|
/* Fixes to bottom row when there's a background */
|
||
|
.layout-single-column .compose-form .compose-form__buttons-wrapper {
|
||
|
padding-bottom: calc(var(--gap-default) / 2);
|
||
|
}
|