source: resources/assets/sass/components/page-header.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: 867 bytes
Line 
1.page-header {
2 display: flex;
3 align-items: flex-start;
4 height: 55px;
5
6 h1, h2, h3, h4, h5 {
7 margin: 0;
8 }
9
10 .breadcrumb {
11 background: none;
12 padding: 0;
13 margin: 0;
14
15 a {
16 &:hover {
17 text-decoration: underline;
18 }
19 }
20
21 li.breadcrumb-item {
22 font-size: 14px !important;
23
24 &:first-child:before {
25 font-size: 12px;
26 font-family: themify;
27 content: "\e69b";
28 display: inline-block;
29 margin-right: 8px;
30 }
31
32 @extend .small;
33
34 & + .breadcrumb-item::before {
35 font-size: 10px;
36 }
37
38 &.active {
39 color: $color-primary;
40 font-weight: 600;
41 }
42 }
43 }
44}
Note: See TracBrowser for help on using the repository browser.