Reduce size of list header
This commit is contained in:
@@ -54,10 +54,10 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
urlify: function() {
|
urlify: function () {
|
||||||
return `/list/${this.title.toLowerCase().replace(" ", "_")}`;
|
return `/list/${this.title.toLowerCase().replace(" ", "_")}`;
|
||||||
},
|
},
|
||||||
prettify: function() {
|
prettify: function () {
|
||||||
return this.title.includes("_")
|
return this.title.includes("_")
|
||||||
? this.title.split("_").join(" ")
|
? this.title.split("_").join(" ")
|
||||||
: this.title;
|
: this.title;
|
||||||
@@ -73,12 +73,10 @@ export default {
|
|||||||
|
|
||||||
header {
|
header {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
min-height: 80px;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding-left: 0.75rem;
|
padding: 0.5rem 0.75rem;
|
||||||
padding-right: 0.75rem;
|
|
||||||
|
|
||||||
&.sticky {
|
&.sticky {
|
||||||
background-color: $background-color;
|
background-color: $background-color;
|
||||||
|
|||||||
Reference in New Issue
Block a user