Fix button placement in mobile size
This commit is contained in:
parent
949d9a5cc1
commit
a4a5ccf33f
2 changed files with 18 additions and 2 deletions
|
|
@ -42,6 +42,10 @@
|
|||
.Text {
|
||||
font-size: $font-small;
|
||||
font-weight: $bold;
|
||||
|
||||
@include breakpoint(phone) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -258,7 +258,6 @@
|
|||
}
|
||||
|
||||
.PartyInfo {
|
||||
align-items: center;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
|
|
@ -269,10 +268,12 @@
|
|||
width: 100%;
|
||||
|
||||
@include breakpoint(phone) {
|
||||
flex-direction: column;
|
||||
gap: $unit-2x;
|
||||
padding: 0 $unit;
|
||||
}
|
||||
|
||||
.Left {
|
||||
& > .Left {
|
||||
flex-grow: 1;
|
||||
|
||||
.Header {
|
||||
|
|
@ -316,6 +317,17 @@
|
|||
}
|
||||
}
|
||||
|
||||
@include breakpoint(phone) {
|
||||
.Right .Button {
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
|
||||
.Text {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.user {
|
||||
align-items: center;
|
||||
display: inline-flex;
|
||||
|
|
|
|||
Loading…
Reference in a new issue