source: resources/assets/sass/components/alert.scss@ 7304c7f

develop
Last change on this file since 7304c7f 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.alert {
2
3 border-color: transparent !important;
4
5 .close {
6 height: 100%;
7 width: 44px;
8 justify-content: center;
9 align-items: center;
10 padding: 0;
11 display: flex;
12 & > * {
13 font-size: initial;
14 text-shadow: none;
15 line-height: 0;
16 }
17 }
18
19 &.alert-primary {
20 background: $color-primary-bright !important;
21 &.alert-with-border {
22 border-left: 3px solid $color-primary !important;
23 }
24 }
25
26 &.alert-secondary {
27 background: $color-secondary-bright !important;
28 &.alert-with-border {
29 border-left: 3px solid $color-secondary !important;
30 }
31 }
32
33 &.alert-success {
34 background: $color-success-bright !important;
35 &.alert-with-border {
36 border-left: 3px solid $color-success !important;
37 }
38 }
39
40 &.alert-danger {
41 background: $color-danger-bright !important;
42 &.alert-with-border {
43 border-left: 3px solid $color-danger !important;
44 }
45 }
46
47 &.alert-warning {
48 background: $color-warning-bright !important;
49 &.alert-with-border {
50 border-left: 3px solid $color-warning !important;
51 }
52 }
53
54 &.alert-info {
55 background: $color-info-bright !important;
56 &.alert-with-border {
57 border-left: 3px solid $color-info !important;
58 }
59 }
60
61 &.alert-dark {
62 background: $color-dark-bright !important;
63 color: $color-dark !important;
64 &.alert-with-border {
65 border-left: 3px solid $color-dark !important;
66 }
67 }
68
69}
Note: See TracBrowser for help on using the repository browser.