Skip to content

Commit

Permalink
Fix SASS Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurHoaro committed Jan 26, 2020
1 parent 6c50a6c commit dd51f65
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions assets/default/scss/shaarli.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1236,18 +1236,18 @@ form {
color: $dark-grey;
}

.pageError-container {
.page-error-container {
color: $dark-grey;

h2 {
margin: 70px 0 25px 0;
margin: 70px 0 25px;
}

pre {
text-align: left;
margin: 0 20%;
padding: 20px 0;
line-height: 0.7em;
text-align: left;
line-height: .7em;
}
}

Expand Down
2 changes: 1 addition & 1 deletion tpl/default/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<body>
<div id="pageheader">
{include="page.header"}
<div id="pageError" class="pageError-container center">
<div id="pageError" class="page-error-container center">
<h2>{'Sorry, nothing to see here.'|t}</h2>
<img src="img/sad_star.png" alt="">
<p>{$error_message}</p>
Expand Down
2 changes: 1 addition & 1 deletion tpl/default/error.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<body>
<div id="pageheader">
{include="page.header"}
<div id="pageError" class="pageError-container center">
<div id="pageError" class="page-error-container center">
<h2>{$message}</h2>

{if="!empty($stacktrace)"}
Expand Down

0 comments on commit dd51f65

Please sign in to comment.