Convert non-CSS-valid comment syntax to CSS-valid
... because even though SCSS is protecting me now, i'll get burnt (again) later. Also, remove a commented-out line.
This commit is contained in:
parent
09bf3afe16
commit
eb6dafaac4
2 changed files with 7 additions and 6 deletions
|
@ -1,11 +1,11 @@
|
||||||
@charset "UTF-8";
|
@charset "UTF-8";
|
||||||
// Extend or override Bulma's elements ../../node_modules/bulma/sass/elements
|
/* Extend or override Bulma's elements ../../node_modules/bulma/sass/elements */
|
||||||
|
|
||||||
|
|
||||||
.site-title {
|
.site-title {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 4.6em;
|
width: 4.6em;
|
||||||
word-break: keep-all; // Shouldn't be needed but Chrome needs it.
|
word-break: keep-all; /* Shouldn't be needed but Chrome needs it. */
|
||||||
font-size: 37px;
|
font-size: 37px;
|
||||||
line-height: 38px;
|
line-height: 38px;
|
||||||
}
|
}
|
||||||
|
@ -13,10 +13,9 @@
|
||||||
.user-account-menu li {
|
.user-account-menu li {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: .1rem .6rem;
|
padding: .1rem .6rem;
|
||||||
// float: right;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add a gradient across only a portion of the vertical width of the navbar.
|
/* Add a gradient across only a portion of the vertical width of the navbar. */
|
||||||
.header,
|
.header,
|
||||||
.sitename {
|
.sitename {
|
||||||
background: linear-gradient(
|
background: linear-gradient(
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
@charset "UTF-8";
|
@charset "UTF-8";
|
||||||
// Extend or override Bulma's layouts ../../node_modules/bulma/sass/layout
|
/**
|
||||||
|
* Extend or override Bulma's layouts ../../node_modules/bulma/sass/layout
|
||||||
|
*/
|
||||||
|
|
||||||
// Center logo & sitename when they stack on tiny screens.
|
/* Center logo & sitename when they stack on tiny screens. */
|
||||||
|
|
||||||
@include until($mini) {
|
@include until($mini) {
|
||||||
.sitename.column,
|
.sitename.column,
|
||||||
|
|
Loading…
Add table
Reference in a new issue