Reduce unnessecary spacing for first heading

This commit is contained in:
alistair3149 2020-06-11 15:42:21 -04:00
parent 16f21053b5
commit ad3b9c41aa
3 changed files with 2 additions and 8 deletions

View file

@ -117,11 +117,6 @@
@media ( max-width: 500px ) { @media ( max-width: 500px ) {
#page-tools { #page-tools {
position: relative;
margin-left: 0;
transform: none;
float: none;
#p-actions > nav ul { #p-actions > nav ul {
right: unset; right: unset;
} }

View file

@ -282,9 +282,8 @@ a {
.firstHeading { .firstHeading {
margin: 0; margin: 0;
padding-top: 1.2rem;
color: @base-10; color: @base-10;
overflow: inherit; // black magic to wrap in small screen devices overflow-wrap: break-word; // Break word instead of overflow if title is too long
line-height: 1.2; line-height: 1.2;
} }

View file

@ -2,7 +2,7 @@
position: fixed; position: fixed;
max-width: 450px; max-width: 450px;
height: ~'calc( 100vh - @{header-height} * 2 - @{margin-side} * 2 )'; height: ~'calc( 100vh - @{header-height} * 2 - @{margin-side} * 2 )';
top: @header-height + @margin-side; top: @header-height;
left: 0; left: 0;
padding: @margin-side; padding: @margin-side;
color: @base-70; color: @base-70;