Merge pull request #70 from mrliptontea/issue-69/remember-me-checkbox-layout

Fix "remember me" checkbox layout on login page, fixes #69
This commit is contained in:
Grzegorz Rajchman
2017-09-14 21:41:29 +01:00
committed by GitHub
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