mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
36 lines
541 B
Vue
36 lines
541 B
Vue
<template>
|
|
<div class="app_container">
|
|
<AppNewDomainInfo />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import AppNewDomainInfo from './components/App/AppNewDomainInfo.vue';
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@use './styles/animations';
|
|
|
|
// APP
|
|
#app {
|
|
color: white;
|
|
overflow-x: hidden;
|
|
font-size: 1em;
|
|
}
|
|
|
|
// CONTAINER
|
|
.app_container {
|
|
display: grid;
|
|
grid-template-rows: auto 1fr auto;
|
|
grid-template-columns: 100%;
|
|
|
|
min-height: 100vh;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.app_main {
|
|
padding: 0 0.5em;
|
|
}
|
|
</style>
|