From b31182fc0861fbb14212aa4498ce1400ba37968b Mon Sep 17 00:00:00 2001 From: mike2ox Date: Wed, 8 Feb 2023 13:46:22 +0900 Subject: [PATCH] [Style] make pagination style in admin page #627 --- styles/admin/common/Pagination.module.scss | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 styles/admin/common/Pagination.module.scss diff --git a/styles/admin/common/Pagination.module.scss b/styles/admin/common/Pagination.module.scss new file mode 100644 index 000000000..ee9511b6d --- /dev/null +++ b/styles/admin/common/Pagination.module.scss @@ -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 */ + } + } + } + } +}