Skip to content

Commit

Permalink
[Style] make pagination style in admin page #627
Browse files Browse the repository at this point in the history
  • Loading branch information
mike2ox committed Feb 8, 2023
1 parent c8a7eac commit b31182f
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions styles/admin/common/Pagination.module.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
@mixin pagination {
.pageNationContainer {
ul {
list-style: none;
padding: 0;

li {
display: inline-block;
cursor: pointer;
width: 27px;
height: 27px;
display: flex;
justify-content: center;
align-items: center;
font-size: 1.2rem; /* $big-font */
font-weight: 600;
a {
text-decoration: none;
color: gray; /* $g1-bottom */
font-size: 1rem;
}
:hover,
:active {
font-weight: 700;
color: black; /* $pp-red */
}
}
}
}
}

0 comments on commit b31182f

Please sign in to comment.