We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 908e5dc commit a098e33Copy full SHA for a098e33
1 file changed
app/assets/stylesheets/pagination.scss
@@ -1,18 +1,23 @@
1
-/* Copied from Co-Design for compatibility purposes */
2
@import 'variables';
3
4
-ul.pagination li.active {
5
- border-color:#293338;
6
- background-color:#3f4e56;
7
- box-shadow:2px 3px 2px -2px #344147;
8
- color:#fff;
9
- font-weight:600
10
-}
+ul {
+ &.pagination {
+ li {
+ &.active {
+ border-color: #293338;
+ background-color: #3f4e56;
+ box-shadow: 2px 3px 2px -2px #344147;
+ color: #fff;
11
+ font-weight: 600;
12
-ul.pagination li.active a:hover {
13
- background-color:transparent
14
+ a:hover {
+ background-color: transparent;
15
+ }
16
17
-ul.pagination li.disabled {
- box-shadow:none
18
+ &.disabled {
19
+ box-shadow: none;
20
21
22
23
}
0 commit comments