source: resources/assets/sass/components/pagination.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: 825 bytes
Line 
1.pagination {
2 .page-item {
3 &.active {
4 .page-link {
5 background: $color-primary;
6 border-color: transparent;
7 }
8 }
9 .page-link {
10 &:hover, &:focus {
11 text-decoration: none;
12 }
13 }
14 }
15 &.pagination-rounded {
16 .page-item {
17 margin: 0 5px;
18 .page-link {
19 border-radius: 50%;
20 padding: 0;
21 display: flex;
22 align-items: center;
23 justify-content: center;
24 height: 40px;
25 width: 40px;
26 }
27 }
28 &.pagination-sm {
29 .page-link {
30 height: 30px;
31 width: 30px;
32 }
33 }
34 &.pagination-lg {
35 .page-link {
36 height: 60px;
37 width: 60px;
38 }
39 }
40 }
41}
Note: See TracBrowser for help on using the repository browser.