gab-social/app/javascript/gabsocial/components/load_more/index.scss
mgabdev 42917806e9 Updated all basic components
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
2019-08-03 02:00:45 -04:00

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%);
}
}