source: resources/assets/sass/components/aside.scss@ 582789f

develop
Last change on this file since 582789f was 7304c7f, checked in by beratkjufliju <kufliju@…>, 3 years ago

added user authentication, create & forgot password methods and blades

  • Property mode set to 100644
File size: 1.5 KB
Line 
1.sidebar-group {
2 background-color: rgba(0, 0, 0, 0.35);
3 position: fixed;
4 right: 0;
5 bottom: 0;
6 top: 0;
7 left: 0;
8 opacity: 0;
9 z-index: 1000;
10 transition: all .3s;
11 visibility: hidden;
12
13 &.show {
14 opacity: 1;
15 visibility: visible;
16 }
17
18 .card {
19 box-shadow: none;
20 }
21
22 .sidebar {
23 width: $sidebar-width;
24 box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
25 background-color: white;
26 z-index: 1000;
27 transition: all .2s;
28 visibility: hidden;
29 opacity: 0;
30 margin-right: -100px;
31 position: fixed;
32 right: 0;
33 bottom: 0;
34 top: 0;
35
36 &.show {
37 visibility: visible;
38 opacity: 1;
39 margin-right: 0px;
40 }
41
42 & > header {
43 background-color: #ebebeb;
44 padding: 1.5rem;
45 font-size: 16px;
46 line-height: 0;
47 display: flex;
48 align-items: center;
49
50 i {
51 margin-right: 10px;
52 }
53 }
54
55 .tab-content {
56 height: calc(100% - 50px);
57
58 .tab-pane.active {
59 height: 100%;
60 display: flex;
61 flex-direction: column;
62
63 .tab-pane-body {
64 flex: 1;
65 overflow: auto;
66 }
67
68 .tab-pane-footer {
69 padding: 20px 0;
70 }
71 }
72 }
73 }
74}
Note: See TracBrowser for help on using the repository browser.