-
-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
8bad103
commit 2e9f74e
Showing
3 changed files
with
77 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 22 additions & 11 deletions
33
...Bit.BlazorUI.Demo.Client.Core/Pages/Components/Inputs/OtpInput/BitOtpInputDemo.razor.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,38 @@ | ||
.example-box { | ||
@import '../../../../Styles/abstracts/_bit-css-variables.scss'; | ||
|
||
.example-box { | ||
display: flex; | ||
max-width: max-content; | ||
align-items: flex-start; | ||
flex-flow: column nowrap; | ||
|
||
.lbl { | ||
margin-bottom: 0.25rem; | ||
} | ||
} | ||
|
||
::deep { | ||
.custom-class { | ||
padding: 1rem; | ||
max-width: max-content; | ||
background-color: lightskyblue; | ||
gap: 1rem; | ||
margin-inline: 1rem; | ||
} | ||
|
||
.custom-class input { | ||
border-radius: 0; | ||
border-width: 0 0 1px 0; | ||
border-color: lightseagreen; | ||
} | ||
|
||
.custom-root { | ||
margin-inline: 1rem; | ||
} | ||
|
||
.custom-input { | ||
border-radius: 50%; | ||
border: 1px solid red; | ||
border: 1px solid tomato; | ||
} | ||
|
||
.custom-focused { | ||
border-color: red; | ||
box-shadow: tomato 0 0 1rem; | ||
} | ||
|
||
.validation-message { | ||
color: red; | ||
color: $bit-color-error; | ||
} | ||
} |