Updating breakpoint mixin value name

This commit is contained in:
Kris 2019-07-18 16:33:12 -04:00
parent ad04ce9f43
commit e8a14a3a65
2 changed files with 6 additions and 6 deletions

View File

@ -40,7 +40,7 @@
grid-template-columns: repeat(3, 32%);
grid-column-gap: 2%;
}
@include breakpoint("mobile") {
@include breakpoint("mobile-large") {
grid-template-columns: 100%;
}
}
@ -49,7 +49,7 @@
// Flex and margin are for IE11
flex: 1 1 24%;
margin: 1%;
@include breakpoint("mobile") {
@include breakpoint("mobile-large") {
margin: 0;
}
display: flex;

View File

@ -327,7 +327,7 @@
&:not(:empty) {
padding: 0.5em 1em 0.5em 0;
}
@include breakpoint("mobile") {
@include breakpoint("mobile-large") {
overflow: hidden;
text-overflow: ellipsis;
padding-right: 0.5em;
@ -370,7 +370,7 @@
.created-by {
margin-right: 1em;
padding-top: 0.35em;
@include breakpoint("mobile") {
@include breakpoint("mobile-large") {
float: left;
margin-bottom: 1em;
}
@ -385,7 +385,7 @@
margin-top: 1em;
min-width: 275px;
word-break: break-word;
@include breakpoint("mobile", min-width) {
@include breakpoint("mobile-large", min-width) {
display: flex;
}
}
@ -495,7 +495,7 @@
}
}
@include breakpoint("mobile") {
@include breakpoint("mobile-large") {
tr.reviewable-score {
grid-template-columns: auto auto auto;
}