Fix styles after Dialog extraction
This commit is contained in:
parent
acbc2da09d
commit
a8fb489911
3 changed files with 5 additions and 5 deletions
|
|
@ -1,4 +1,4 @@
|
|||
.Search.Dialog {
|
||||
.Search.DialogContent {
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
|
@ -94,7 +94,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
.Search.Dialog #NoResults {
|
||||
.Search.DialogContent #NoResults {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
|
@ -102,7 +102,7 @@
|
|||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.Search.Dialog #NoResults h2 {
|
||||
.Search.DialogContent #NoResults h2 {
|
||||
color: var(--text-secondary);
|
||||
font-size: $font-large;
|
||||
font-weight: 500;
|
||||
|
|
|
|||
|
|
@ -349,7 +349,7 @@ const SearchModal = (props: Props) => {
|
|||
<Dialog open={open} onOpenChange={openChange}>
|
||||
<DialogTrigger asChild>{props.children}</DialogTrigger>
|
||||
<DialogContent
|
||||
className="Search Dialog"
|
||||
className="Search"
|
||||
onEscapeKeyDown={onEscapeKeyDown}
|
||||
onOpenAutoFocus={onOpenAutoFocus}
|
||||
>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.Weapon.Dialog {
|
||||
.Weapon.DialogContent {
|
||||
min-width: 480px;
|
||||
|
||||
@include breakpoint(phone) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue