农场 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.
 
 
 

62 lines
685 B

<template>
<NuxtPage />
</template>
<style>
html,
body,
#__nuxt {
margin: 0;
width: 100%;
height: 100%;
}
.clear:after {
content: '';
display: block;
height: 0;
visibility: hidden;
clear: both;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
.absolute {
position: absolute;
}
.fixed {
position: fixed;
}
.relative {
position: relative;
}
.flex {
display: flex;
}
.flex-1 {
flex: 1;
}
.items-center {
align-items: center;
}
.justify-center {
justify-content: center;
}
.m-t {
margin-top: 10rem;
}
.m-b {
margin-bottom: 10rem;
}
.p {
padding: 10rem;
}
.p-16 {
padding: 16rem;
}
.overflow-hidden {
overflow: hidden;
}
</style>