20 lines
367 B
CSS
20 lines
367 B
CSS
/* 引入Google字体 */
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
|
|
|
|
/* Tailwind基础样式 */
|
|
@import 'tailwindcss';
|
|
|
|
/* 引入共享样式 */
|
|
@import './styles/index.css';
|
|
|
|
/* 基础HTML和Body样式 */
|
|
html, body {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#app {
|
|
height: 100%;
|
|
} |