mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-18 19:18:21 -05:00
migrated to ASP.Net Core
This commit is contained in:
22
Webfront/Content/bootstrap/mixins/_pagination.scss
Normal file
22
Webfront/Content/bootstrap/mixins/_pagination.scss
Normal file
@ -0,0 +1,22 @@
|
||||
// Pagination
|
||||
|
||||
@mixin pagination-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {
|
||||
.page-link {
|
||||
padding: $padding-y $padding-x;
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user