blob: bbc09a80eff5a658f808e0fd9253ad7700edbbf7 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
@charset 'UTF-8';
.inner-wrap {
&.move--left {
.search-bar__container {
display: none;
}
}
&.move--right {
.search-bar__container {
display: none;
}
}
}
.app__content {
@include display-flex;
@include flex-direction(column);
background: $white;
height: 100%;
margin-left: 220px;
padding-top: 50px;
position: relative;
.channel__wrap & {
padding-top: 0;
}
}
#post-create {
@include flex(0 0 auto);
background: $white;
width: 100%;
z-index: 3;
}
#archive-link-home {
@include flex(0 0 auto);
cursor: pointer;
font-size: 13px;
padding: 10px 20px;
.fa {
@include opacity(.7);
font-size: 11px;
}
a {
color: inherit;
}
}
.delete-message-text {
margin-top: 10px;
}
|