农场 nuxt3实现的大屏界面
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

39 lines
451 B

<template>
<NuxtPage/>
</template>
<style>
html, body, #__nuxt {
margin: 0;
width: 100%;
height: 100%;
}
.clear:after {
content: '';
clear: both;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
.absolute {
position: absolute;
}
.fixed {
position: fixed;
}
.relative {
position: relative;
}
.flex {
display: flex;
}
.items-center {
align-items: center;
}
.justify-center {
justify-content: center;
}
</style>