Replaced deprecated '@import' with '@use' to align with best practices. Refactored stylesheet to behave as a partial, enhancing SASS compilation efficiency.
24 lines
488 B
SCSS
24 lines
488 B
SCSS
.c__pagination {
|
|
display: flex;
|
|
gap: 2rem;
|
|
|
|
&__list {
|
|
display: flex;
|
|
align-items: center;
|
|
border: 1px var(--c--theme--colors--greyscale-300) solid;
|
|
border-radius: 2px;
|
|
padding: var(--c--theme--spacings--st);
|
|
background: var(--c--theme--colors--greyscale-000);
|
|
}
|
|
|
|
&__goto {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
|
|
.c__field--default {
|
|
width: 100px;
|
|
}
|
|
}
|
|
}
|