source: resources/assets/sass/components/modal.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: 1003 bytes
Line 
1body.modal-open {
2 .modal.fade .modal-dialog {
3 transform: translate(0, 0) scale(.9);
4 }
5
6 .modal.show .modal-dialog {
7 transform: translate(0, 0) scale(1);
8 }
9}
10
11.modal {
12 .modal-dialog {
13 .modal-content {
14 border: none;
15 box-shadow: none;
16 border-radius: .5rem;
17
18 .modal-header {
19 height: 60px;
20 padding: 0 20px;
21 display: flex;
22 align-items: center;
23 background-color: #ebebeb;
24 border-bottom: none;
25
26 .modal-title {
27 font-size: $default-font-size + 3;
28 font-weight: 600;
29 }
30
31 button.close {
32 background-color: white;
33 text-shadow: none;
34 opacity: 1;
35 margin: 0;
36 font-size: 23px;
37 padding: 0;
38 width: 30px;
39 height: 30px;
40 display: flex;
41 border-radius: 50%;
42 align-items: center;
43 justify-content: center;
44
45 &:hover {
46 color: #646464;
47 }
48
49 & > * {
50 font-size: initial;
51 }
52 }
53 }
54
55 .modal-body {
56 padding: 1.5rem;
57 }
58
59 .modal-footer {
60 height: 60px;
61 }
62 }
63 }
64}
Note: See TracBrowser for help on using the repository browser.