42917806e9
removed unnecessary components, combined where necessary added each component to a folder, added individual css style modules optimized some component rendering flows removed functional components in favor of pure components linted and formatted all of the files
22 lines
401 B
SCSS
22 lines
401 B
SCSS
.load-more {
|
|
display: block;
|
|
color: $dark-text-color;
|
|
background-color: transparent;
|
|
border: 0;
|
|
margin: 0;
|
|
padding: 15px;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
clear: both;
|
|
text-decoration: none;
|
|
|
|
@include text-sizing(14px, 400, 1.2, center);
|
|
|
|
&:hover {
|
|
background: lighten($ui-base-color, 2%);
|
|
}
|
|
|
|
&--gap {
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
}
|
|
} |