remove border-bottom of the last list item

This commit is contained in:
taehoon 2019-04-04 03:18:29 -04:00
parent ca26776b4e
commit 83faa96f1b
2 changed files with 8 additions and 2 deletions

View File

@ -28,7 +28,7 @@ export default {
@import '../../_variables.scss';
.list {
&-item {
&-item:not(:last-child) {
border-bottom: 1px solid;
border-bottom-color: $fallback--border;
border-bottom-color: var(--border, $fallback--border);

View File

@ -1,10 +1,16 @@
@import '../../_variables.scss';
.with-load-more {
&-footer {
padding: 10px;
text-align: center;
border-top: 1px solid;
border-top-color: $fallback--border;
border-top-color: var(--border, $fallback--border);
.error {
font-size: 14px;
}
}
}
}