blob: 18e84f94eb2629a61ea56bc063668c7de256d09d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
@import "./variables";
@import "./mixins";
#main-content {
display: flex;
flex-direction: column;
align-items: center;
padding: $outer-gap;
padding-bottom: 0;
}
.new-post-modal textarea {
border: none;
resize: none;
outline: none;
font-size: 1.5em;
margin: $inner-gap 0;
width: 100%;
height: 10em;
flex-grow: 1;
background-color: transparent;
color: $text;
font-family: $font;
}
|