17 lines
241 B
Vue
17 lines
241 B
Vue
<template>
|
|
<div>
|
|
<TitleBox />
|
|
<LoginBox />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
@import '~/assets/css/components';
|
|
|
|
body {
|
|
background-color: $background-primary-color;
|
|
color: $text-primary-color;
|
|
|
|
margin: 0;
|
|
}
|
|
</style> |