* Attempt #1

* Remove console.log

* Update puppeteer screenshot
This commit is contained in:
Josh Johnson 2019-12-03 12:56:47 +00:00 committed by GitHub
parent b3b7b3f14f
commit 44b4326a52
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 1 deletions

BIN
.github/actions-scripts/__snapshots__/puppeteer-darwin.png vendored Normal file → Executable file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 268 KiB

After

Width:  |  Height:  |  Size: 268 KiB

View file

@ -3,6 +3,7 @@
===============================*/
.choices {
position: relative;
overflow: hidden;
margin-bottom: 24px;
font-size: 16px;
}
@ -15,6 +16,10 @@
margin-bottom: 0;
}
.choices.is-open {
overflow: initial;
}
.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
background-color: #eaeaea;

File diff suppressed because one or more lines are too long

View file

@ -24,6 +24,7 @@ $choices-icon-cross-inverse: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiI
.#{$choices-selector} {
position: relative;
overflow: hidden;
margin-bottom: $choices-guttering;
font-size: $choices-font-size-lg;
&:focus {
@ -32,6 +33,9 @@ $choices-icon-cross-inverse: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiI
&:last-child {
margin-bottom: 0;
}
&.is-open {
overflow: initial;
}
&.is-disabled {
.#{$choices-selector}__inner,
.#{$choices-selector}__input {