Fix tablet sizing for JobSection

This commit is contained in:
Justin Edmund 2022-12-30 05:48:26 -08:00
parent 18208a95b7
commit 758ee4dae4
2 changed files with 11 additions and 1 deletions

View file

@ -4,6 +4,10 @@
justify-content: center;
margin: auto;
max-width: 761px;
@include breakpoint(tablet) {
align-items: center;
}
}
#grid_characters {

View file

@ -1,12 +1,14 @@
#Job {
align-items: center;
box-sizing: border-box;
display: flex;
margin-bottom: $unit * 3;
@include breakpoint(tablet) {
align-items: center;
flex-direction: column;
gap: $unit;
justify-content: center;
max-width: 447px;
}
select {
@ -58,6 +60,10 @@
width: $width;
transition: box-shadow 0.15s ease-in-out;
@include breakpoint(tablet) {
margin-right: 0;
}
@include breakpoint(phone) {
aspect-ratio: 16/9;
margin: 0;