Fix "remember me" checkbox layout on login page, fixes #69

This commit is contained in:
mrliptontea
2017-09-14 21:38:08 +01:00
parent 5c34a08c7f
commit d65d26f26f
3 changed files with 8 additions and 2 deletions

View File

@@ -74,6 +74,7 @@ Latest (master):
* Fixed #52: delete watcher icon in the sidebar was missing
* Fixed #54: long checkbox lists will be scrollable
* Fixed #62: anchors won't scroll the page
* Fixed #69: fixed "remember me" checkbox layout on login page
v1.8.0 (2016-11-20):

View File

@@ -7,7 +7,7 @@
margin: $line-height-computed * 2 auto;
label,
input {
input:not([type="checkbox"]) {
width: 100%;
}
@@ -16,6 +16,11 @@
margin-bottom: $padding-base-vertical;
font-weight: $font-weight-bold;
&[for="autologin"] {
@include checkbox;
margin-bottom: $line-height-computed;
}
> a {
float: right;
font-weight: $font-weight-normal;

File diff suppressed because one or more lines are too long