We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54b4c73 commit 6e77f9bCopy full SHA for 6e77f9b
app/javascript/components/navbar/ExamNavbar.css
@@ -11,19 +11,24 @@
11
}
12
13
.transition {
14
- transition: 0.35s width ease-in-out;
+ transition: 0.35s max-width ease-in-out, 0.35s min-width ease-in-out;
15
16
17
.sidebar-small {
18
width: calc(6em + 2px);
19
+ min-width: calc(6em + 2px);
20
+ max-width: calc(6em + 2px);
21
22
23
.sidebar-expanded {
- width: 500px;
24
+ min-width: 500px;
25
+ max-width: 100%;
26
+ resize: horizontal;
27
+ overflow: auto;
28
29
30
.width-0 {
- width: 0;
31
+ max-width: 0;
32
33
34
.collapse:not(.width):not(.show) {
0 commit comments