do not restrict the menu, add title flex
This commit is contained in:
parent
cc856f094c
commit
8cfe80e3b3
1 changed files with 9 additions and 11 deletions
|
@ -1,19 +1,12 @@
|
||||||
body, html {
|
body, html {
|
||||||
height: 100%;
|
max-height: 100vh;
|
||||||
margin: 0;
|
max-width: 100%;
|
||||||
overflow: hidden; /* Prevents scrollbar from appearing */
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
flex-direction: column;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#menu {
|
#menu {
|
||||||
width: 800px;
|
|
||||||
height: 400px;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -27,7 +20,12 @@ body {
|
||||||
transition: transform 0.3s, scale 0.3s;
|
transition: transform 0.3s, scale 0.3s;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
#title{
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
p{
|
p{
|
||||||
color: dodgerblue;
|
color: dodgerblue;
|
||||||
align-self: center;
|
align-self: center;
|
||||||
|
|
Loading…
Add table
Reference in a new issue