1.aside {
2 max-height: calc(100vh - 106px);
3}
4@media(min-width: 991px) {
5 .aside {
6 max-height: calc(100vh - 65px);
7 }
8}
9@media(min-width: 801px) {
10 .aside .list-container {
11 overflow-y: auto;
12 }
13 .aside .list-container::-webkit-scrollbar {
14 width: 10px;
15 }
16 .aside .list-container::-webkit-scrollbar-track {
17 background: #f1f1f1;
18 }
19 .aside .list-container::-webkit-scrollbar-thumb {
20 background: #888;
21 border-radius: 20em;
22 }
23 .aside .list-container::-webkit-scrollbar-thumb:hover {
24 background: #555;
25 }
26}
27
28.breadcrumbs {
29 margin-top: 10px;
30}
31
32@media (max-width: 602px) {
33 .img-col {
34 width: 100%;
35 }
36}
37
38
39.form-input>.form-control, .form-input>.form-select {
40 background-color: #fff !important;
...
</html>