Merge branch 'master' into add-get-started-page

This commit is contained in:
Chris Hill-Scott
2019-10-31 10:54:11 +00:00
committed by GitHub
67 changed files with 2969 additions and 335 deletions

View File

@@ -39,7 +39,8 @@
padding-bottom: $gutter-half;
z-index: 10;
.placeholder {
.placeholder,
.placeholder-conditional {
color: transparent;
}

View File

@@ -76,6 +76,7 @@ $path: '/static/images/';
@import 'views/notification';
@import 'views/send';
@import 'views/get_started';
@import 'views/history';
// TODO: break this up
@import 'app';

View File

@@ -0,0 +1,29 @@
$item-top-padding: $gutter-half;
.history-list {
@include core-19;
margin-bottom: $gutter;
&-item {
padding: $item-top-padding 0 $gutter-half 0;
border-top: 1px solid $border-colour;
position: relative;
&:last-child {
border-bottom: 1px solid $border-colour;
}
}
&-user {
display: block;
}
&-time {
display: block;
color: $secondary-text-colour;
}
}