Skip to content

Commit

Permalink
Adjust border to prevent wrapping in footer of full post
Browse files Browse the repository at this point in the history
  • Loading branch information
originated committed Nov 18, 2017
1 parent 33283c9 commit bc61a72
Showing 1 changed file with 30 additions and 29 deletions.
59 changes: 30 additions & 29 deletions src/app/components/cards/PostFull.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.Post {
@include themify($themes) {
background-color: themed('moduleBackgroundColor');
}
background-color: themed('moduleBackgroundColor');
}
}

.PostFull {
Expand All @@ -10,13 +10,13 @@
margin: 0 auto;
max-width: 50rem;
@include themify($themes) {
border-bottom: themed('border');
}
border-bottom: themed('border');
}
.button.hollow {
@include themify($themes) {
border: themed('borderAccent');
color: themed('textColorAccent');
}
border: themed('borderAccent');
color: themed('textColorAccent');
}
}

.ReplyEditor {
Expand All @@ -26,8 +26,9 @@

.PostFull__time_author_category {
font-weight: 400;
border-right: none!important;
@include themify($themes) {
border-right: themed('border');
border-right: themed('border');
color: themed('textColorSecondary');
}

Expand All @@ -42,12 +43,12 @@
margin: 1rem 0 1rem 0;
line-height: 1.2;
@include themify($themes) {
color: themed('textColorSecondary');
}
color: themed('textColorSecondary');
}
strong, a {
@include themify($themes) {
color: themed('textColorSecondary');
}
color: themed('textColorSecondary');
}
}
font-size: 120%;
display: flex;
Expand All @@ -70,8 +71,8 @@

.PostFull__header {
@include themify($themes) {
border-bottom: themed('border');
}
border-bottom: themed('border');
}
> h1 {
overflow: hidden;
font-family: $body-font-family;
Expand All @@ -95,8 +96,8 @@
top: 5px;
svg {
@include themify($themes) {
fill: themed('textColorSecondary');
}
fill: themed('textColorSecondary');
}
}
}
}
Expand All @@ -117,8 +118,8 @@
font-size: 94%;
svg {
@include themify($themes) {
fill: themed('textColorSecondary');
}
fill: themed('textColorSecondary');
}
}
a, .FoundationDropdownMenu__label {
font-size: 94%;
Expand All @@ -132,8 +133,8 @@
}
.VerticalMenu > li > a {
@include themify($themes) {
fill: themed('textColorSecondary');
}
fill: themed('textColorSecondary');
}
}
span {
white-space: normal;
Expand All @@ -143,8 +144,8 @@
padding-right: .4rem;
margin-right: .4rem;
@include themify($themes) {
border-right: themed('border');
}
border-right: themed('border');
}
}
}

Expand All @@ -158,24 +159,24 @@
font-size: 94%;
font-weight: 600;
@include themify($themes) {
border-right: themed('border');
fill: themed('textColorSecondary');
}
border-right: themed('border');
fill: themed('textColorSecondary');
}
}

.PostFull__reply {
padding-right: .4rem;
margin-right: .4rem;
@include themify($themes) {
border-right: themed('border');
}
border-right: themed('border');
}
a {margin: 0 0.15rem;}
}

.PostFull__lifetime {
@include themify($themes) {
fill: themed('textColorSecondary');
}
fill: themed('textColorSecondary');
}
font-size: 80%;
}

Expand Down

0 comments on commit bc61a72

Please sign in to comment.