style: fix this fucking bug
This commit is contained in:
parent
82ecb49292
commit
dfac8b94a8
3 changed files with 33 additions and 5 deletions
15
app/app.vue
15
app/app.vue
|
|
@ -34,18 +34,27 @@ onMounted(async () => {
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.loading-container {
|
.loading-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.app-viewport,
|
||||||
|
.app-viewport > * {
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
|
||||||
.app-viewport {
|
.app-viewport {
|
||||||
display: flex;
|
display: block !important;
|
||||||
flex-direction: column;
|
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
|
padding-top: 5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-content {
|
.app-content {
|
||||||
flex: 1;
|
width: 100%;
|
||||||
|
max-width: 1280px;
|
||||||
|
margin: 0 auto;
|
||||||
|
min-height: calc(100vh - 12rem);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
@ -61,7 +61,7 @@
|
||||||
font-size: 0.875rem;
|
font-size: 0.875rem;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
margin-top: 100vh;
|
margin-top: 8rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.max-w-7xl {
|
.max-w-7xl {
|
||||||
|
|
|
||||||
|
|
@ -13,15 +13,34 @@
|
||||||
|
|
||||||
body {
|
body {
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
width: 100vw;
|
|
||||||
background-color: #1d1e1f;
|
background-color: #1d1e1f;
|
||||||
color: #c9d1d9;
|
color: #c9d1d9;
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-viewport {
|
.app-viewport {
|
||||||
|
width: 100%;
|
||||||
padding: 2rem 1rem;
|
padding: 2rem 1rem;
|
||||||
|
display: block !important;
|
||||||
|
min-height: 100vh !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-viewport > * {
|
||||||
|
display: block !important;
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-content {
|
||||||
|
display: block !important;
|
||||||
|
width: 100% !important;
|
||||||
|
max-width: 1280px !important;
|
||||||
|
margin: 0 auto !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-container {
|
||||||
|
margin-top: 2rem !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.spinner {
|
.spinner {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue