Jesper Hess
f68ff9a945
Moved bootstrap folder into _sass/bootstrap Moved cryptohagen.scss to /assets/css Added frontmatter to cryptohagen.scss
23 lines
485 B
SCSS
23 lines
485 B
SCSS
// Pagination
|
|
|
|
@mixin pagination-size($padding-vertical, $padding-horizontal, $font-size, $line-height, $border-radius) {
|
|
.page-link {
|
|
padding: $padding-vertical $padding-horizontal;
|
|
font-size: $font-size;
|
|
line-height: $line-height;
|
|
}
|
|
|
|
.page-item {
|
|
&:first-child {
|
|
.page-link {
|
|
@include border-left-radius($border-radius);
|
|
}
|
|
}
|
|
&:last-child {
|
|
.page-link {
|
|
@include border-right-radius($border-radius);
|
|
}
|
|
}
|
|
}
|
|
}
|