styles.module.scss
2.13 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
@import '../styles/app';
.root {
:global(.container) {
@media (min-width: 1200px) {
max-width: 1440px;
}
}
}
.content {
background-color: #FFFBF8 !important;
padding: $navbar-height*2 0 0 0 !important;
min-height: 100vh;
& :global(.widget) {
box-shadow: none !important;
background: transparent !important;
padding-left: 0 !important;
padding-right: 0 !important;
}
}
.header {
position: fixed !important;
width: 100vw;
background-color: #fff !important;
height: 80px !important;
box-shadow: 0 0 10px rgba(0,0,0,.2);
}
.company {
display: flex;
position: fixed;
bottom: 0;
align-items: center;
width: inherit;
max-width: inherit;
color: #495057;
font-size: 11px;
font-weight: 400;
background-repeat: no-repeat;
margin-bottom: 30px;
background-size: contain;
border-radius: 50px;
padding: 0 25px;
img {
border-radius: 50%;
margin-right: 10px;
margin-top: -4px;
width: 50px;
}
}
.sidebar {
@media (max-width: 767px) {
position: relative;
width: auto;
background: transparent;
border-right: 0;
margin-bottom: 20px;
.nav {
padding-top: 0;
> div > li > a {
padding-left: 0 !important;
}
}
}
@media (min-width: 768px) {
box-shadow: -100vw 0 0 100vw white;
position: absolute;
height: 100%;
right: 0;
background: #fff;
top: -40px;
padding-top: 22px;
overflow-y: visible !important;
max-width: 100%;
.nav {
position: fixed;
width: inherit;
max-width: inherit;
overflow-y: visible;
max-height: calc(100vh - 200px);
}
> ul {
padding-top: 0;
}
}
& :global(a) {
font-weight: 400 !important;
&[aria-current="page"] {
color: theme-color('warning') !important;
}
}
& :global(.link-wrapper) {
> a > span {
display: none !important;
}
> a {
padding-left: 25px !important;
font-weight: 600 !important;
}
}
}
.scrollSpy {
color: #32373b;
}
.activeScrollSpy > a,
.activeScrollSpy > a:hover,
.activeScrollSpy > a:focus {
color: theme-color('warning') !important;
}