source: resources/assets/sass/components/timeline.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: 396 bytes
Line 
1.timeline {
2 .timeline-item {
3 padding-bottom: 20px;
4 position: relative;
5 display: flex;
6
7 & > div:last-child {
8 flex: 1;
9 }
10
11 &::before {
12 content: "";
13 display: block;
14 position: absolute;
15 width: 1px;
16 bottom: 0px;
17 top: 32px;
18 left: 15px;
19 background: #e1e1e1;
20 }
21
22 &:last-child {
23 &::before {
24 display: none;
25 }
26
27 padding-bottom: 0;
28 bottom: 0;
29 }
30 }
31}
Note: See TracBrowser for help on using the repository browser.