-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.scss
More file actions
58 lines (50 loc) · 1.23 KB
/
index.scss
File metadata and controls
58 lines (50 loc) · 1.23 KB
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
57
58
@use "./node_modules/@fullstacked/ui/ui.scss";
@use "./node_modules/@fullstacked/ui/values/colors.scss";
@use "./node_modules/@fullstacked/ui/values/spacing.scss";
html,
body {
background-color: colors.$blue-dark;
width: 100%;
}
$file-list-width: 300px;
main {
display: flex;
flex-direction: column;
justify-content: space-between;
width: 100%;
height: 100%;
#editor-container {
flex: 1;
height: 100%;
display: flex;
> ul {
height: 100%;
list-style-type: none;
padding: 0;
margin: 0;
width: $file-list-width;
padding: spacing.$small spacing.$small 200px;
> li {
padding: spacing.$small;
border-radius: 5px;
&.active {
background-color: colors.$blue;
}
}
}
> div {
width: calc(100% - $file-list-width);
height: 100%;
padding-bottom: 200px;
> .bn-container {
width: 100%;
}
}
}
}
.form {
display: flex;
gap: spacing.$medium;
padding: spacing.$x-small spacing.$small;
align-items: center;
}