mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 12:04:15 +00:00
073b7b6717
* Bootstrap5 migration
31 lines
741 B
SCSS
Executable file
31 lines
741 B
SCSS
Executable file
// Pagination
|
|
|
|
// scss-docs-start pagination-mixin
|
|
@mixin pagination-size($padding-y, $padding-x, $font-size, $border-radius) {
|
|
.page-link {
|
|
padding: $padding-y $padding-x;
|
|
@include font-size($font-size);
|
|
}
|
|
|
|
.page-item {
|
|
@if $pagination-margin-start == (-$pagination-border-width) {
|
|
&:first-child {
|
|
.page-link {
|
|
@include border-start-radius($border-radius);
|
|
}
|
|
}
|
|
|
|
&:last-child {
|
|
.page-link {
|
|
@include border-end-radius($border-radius);
|
|
}
|
|
}
|
|
} @else {
|
|
//Add border-radius to all pageLinks in case they have left margin
|
|
.page-link {
|
|
@include border-radius($border-radius);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// scss-docs-end pagination-mixin
|