refactor(app): refreshed app's look&feel, improved responsiveness, viewport width and elements' alignment

This commit is contained in:
2026-03-28 14:40:15 +01:00
parent d762cb0536
commit 8392e2fa29
13 changed files with 288 additions and 284 deletions
+16 -7
View File
@@ -25,13 +25,22 @@ export default defineComponent({
</script>
<style lang="scss" scoped>
.app-container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
@use '../styles/responsive';
min-height: 100vh;
padding: 0.5em;
.app-container {
display: grid;
justify-content: center;
grid-template-rows: minmax(900px, 1fr) auto;
gap: 0.5em;
height: 100vh;
}
@include responsive.midScreen {
.app-container {
height: auto;
min-height: 100vh;
}
}
</style>