source: resources/assets/sass/components/badge.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: 671 bytes
Line 
1.badge {
2 padding: 5px 10px;
3 font-size: $default-font-size - 3;
4 &.badge-success {
5 background: $color-success;
6 }
7 &.badge-danger {
8 background: $color-danger;
9 }
10 &.badge-secondary {
11 background: $color-secondary;
12 }
13 &.badge-info {
14 background: $color-info;
15 }
16 &.badge-warning {
17 background: $color-warning;
18 }
19 &.badge-dark {
20 background: $color-dark;
21 }
22 &.badge-primary {
23 background: $color-primary;
24 }
25 &.badge-light {
26 background: $color-light;
27 }
28}
29
30.btn {
31 position: relative;
32 .badge {
33 padding: 2px 6px;
34 right: 7px;
35 top: -7px;
36 position: absolute;
37 }
38}
Note: See TracBrowser for help on using the repository browser.