Skip to content
Snippets Groups Projects
Commit ccc85d80 authored by dimitrieh's avatar dimitrieh Committed by Alfredo Sumaran
Browse files

Fixed regression of note-headline-light where it was always placed on 2 lines,...

Fixed regression of note-headline-light where it was always placed on 2 lines, even on wide viewports
parent 44fddd29
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -43,7 +43,7 @@ ul.notes {
}
 
.system-note-message {
display: inline-block;
display: inline;
 
&::first-letter {
text-transform: lowercase;
Loading
Loading
@@ -55,7 +55,7 @@ ul.notes {
}
 
p {
display: inline-block;
display: inline;
margin: 0;
 
&::first-letter {
Loading
Loading
@@ -353,6 +353,14 @@ ul.notes {
font-size: 14px;
}
 
.note-headline-light {
display: inline;
@media (max-width: $screen-xs-min) {
display: block;
}
}
.note-headline-light,
.discussion-headline-light {
color: $notes-light-color;
Loading
Loading
---
title: Fixed regression of note-headline-light where it was always placed on 2 lines, even on wide viewports
merge_request:
author:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment