Skip to content
This repository was archived by the owner on Jun 1, 2025. It is now read-only.

Commit 862c757

Browse files
committed
chore: rollback changes to hopefully pass Cypress tests
1 parent 639d65b commit 862c757

File tree

2 files changed

+37
-38
lines changed

2 files changed

+37
-38
lines changed

src/app/app.component.scss

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
$navbar-height: 56px;
12
$side-menu-width: 250px;
23

34
.body-content {
@@ -40,3 +41,39 @@ section {
4041
background-color: #fff;
4142
border-bottom: 1px solid #d6d6d6;
4243
}
44+
45+
.panel-wm {
46+
padding: #{$navbar-height} 0 0 0;
47+
48+
.nav-stacked {
49+
padding-bottom: 30px;
50+
51+
.nav-item {
52+
width: 100%;
53+
}
54+
}
55+
56+
.nav > li > a {
57+
padding: 10px 15px;
58+
border-radius: 0;
59+
}
60+
61+
.panel-wm-content {
62+
margin-left: $side-menu-width;
63+
padding-right: 20px;
64+
}
65+
66+
.panel-wm-left {
67+
position: fixed;
68+
z-index: 400;
69+
transition: left 0.15s;
70+
top: $navbar-height;
71+
bottom: 0;
72+
left: 0;
73+
background-color: #f5f5f5;
74+
transform: translate3d(0, 0, 0);
75+
border-right: 1px solid #d0d0d0;
76+
overflow-y: auto;
77+
width: $side-menu-width;
78+
}
79+
}

src/styles.scss

Lines changed: 0 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
@use 'sass:color';
22

3-
$navbar-height: 56px;
43
$primary-color: #0d6efd;
5-
$side-menu-width: 250px;
64

75
@use 'bootstrap/scss/bootstrap' with (
86
$primary: $primary-color
@@ -106,42 +104,6 @@ $button-style-bg-color: #fff;
106104
color: #ff002b;
107105
}
108106

109-
.panel-wm {
110-
padding: #{$navbar-height} 0 0 0;
111-
112-
.nav-stacked {
113-
padding-bottom: 30px;
114-
115-
.nav-item {
116-
width: 100%;
117-
}
118-
}
119-
120-
.nav > li > a {
121-
padding: 10px 15px;
122-
border-radius: 0;
123-
}
124-
125-
.panel-wm-content {
126-
margin-left: $side-menu-width;
127-
padding-right: 20px;
128-
}
129-
130-
.panel-wm-left {
131-
position: fixed;
132-
z-index: 400;
133-
transition: left 0.15s;
134-
top: $navbar-height;
135-
bottom: 0;
136-
left: 0;
137-
background-color: #f5f5f5;
138-
transform: translate3d(0, 0, 0);
139-
border-right: 1px solid #d0d0d0;
140-
overflow-y: auto;
141-
width: $side-menu-width;
142-
}
143-
}
144-
145107
.github-button-container {
146108
position: relative;
147109
margin: 0 5px;

0 commit comments

Comments
 (0)