Skip to content

Commit

Permalink
fix(): change modal background and field height
Browse files Browse the repository at this point in the history
  • Loading branch information
hirsch committed Jul 26, 2021
1 parent 1d1fc2e commit eb87f1b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

bal-field-label {
user-select: none;
min-height: 20px;

label[for] {
cursor: pointer;
Expand Down
3 changes: 1 addition & 2 deletions packages/components/src/components/bal-input/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<div class="container">
<h2 class="title is-size-2">Basic</h2>
<section>
<bal-input id="bal-input-1" name="firstName" placeholder="Enter your firstname" data-test-id="input"></bal-input>
<bal-input autofocus id="bal-input-1" name="firstName" placeholder="Enter your firstname" data-test-id="input"></bal-input>
<bal-input id="bal-input-1-preview" disabled placeholder="Enter your firstname"></bal-input>
<bal-input id="bal-input-1-change" disabled placeholder="Enter your firstname"></bal-input>
</section>
Expand All @@ -21,7 +21,6 @@ <h2 class="title is-size-2">Basic</h2>
var input1 = document.getElementById('bal-input-1')
var input1Preview = document.getElementById('bal-input-1-preview')
var input1Change = document.getElementById('bal-input-1-change')
setTimeout(() => input1.setFocus(), 100)
input1.addEventListener('balInput', function (event) {
input1Preview.value = event.detail
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ $modal-card-title-size: $size-large;
$modal-card-foot-border-top: 0;
$modal-card-head-border-bottom: 0;

$modal-background-background-color: bulmaRgba(darken($blue-darker, 10), 0.86);
$modal-background-background-color: bulmaRgba(darken($blue-dark, 10), 0.86);

0 comments on commit eb87f1b

Please sign in to comment.