Commit 513b96f4 authored by Sam Rose's avatar Sam Rose Committed by Annabel Dunstone Gray

Wrap note actions below timestamp on discussions

parent c89849af
...@@ -130,12 +130,6 @@ ul.notes { ...@@ -130,12 +130,6 @@ ul.notes {
} }
.note-header { .note-header {
padding-bottom: 8px;
padding-right: 20px;
@media (min-width: $screen-sm-min) {
padding-right: 0;
}
@media (max-width: $screen-xs-min) { @media (max-width: $screen-xs-min) {
.inline { .inline {
...@@ -384,10 +378,15 @@ ul.notes { ...@@ -384,10 +378,15 @@ ul.notes {
.note-header { .note-header {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
@media (max-width: $screen-xs-max) {
flex-flow: row wrap;
}
} }
.note-header-info { .note-header-info {
min-width: 0; min-width: 0;
padding-bottom: 5px;
} }
.note-headline-light { .note-headline-light {
...@@ -435,6 +434,11 @@ ul.notes { ...@@ -435,6 +434,11 @@ ul.notes {
margin-left: 10px; margin-left: 10px;
color: $gray-darkest; color: $gray-darkest;
@media (max-width: $screen-xs-max) {
float: none;
margin-left: 0;
}
.note-action-button { .note-action-button {
margin-left: 8px; margin-left: 8px;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment