tidy up assets files.

This commit is contained in:
chiayin
2023-04-18 11:13:09 +08:00
parent ca781f3938
commit cee72bb8da
8 changed files with 103 additions and 101 deletions

20
src/assets/base.css Normal file
View File

@@ -0,0 +1,20 @@
/* 全域字型 */
@layer base {
html {
font-family: 'Roboto', sans-serif, system-ui;
color: #0f172a;
}
h1, h2, h3, h4, h5, h6 {
line-height: 1;
}
}
/* invalid */
.is-invalid :invalid{
@apply invalid:border-danger focus:ring-danger
}
/* height */
.h-screen-main {
height: calc(100vh - 104px);
}