mirror of
https://github.com/FatttSnake/Pinnacle-OA.git
synced 2026-04-05 06:51:23 +08:00
32 lines
530 B
CSS
32 lines
530 B
CSS
:root {
|
|
--main-color: #00d4ff;
|
|
}
|
|
.main {
|
|
display: flex;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
min-width: 600px;
|
|
min-height: 600px;
|
|
text-align: center;
|
|
}
|
|
.main-table {
|
|
position: relative;
|
|
display: flex;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
.main-add-content {
|
|
position: fixed;
|
|
display: flex;
|
|
width: 100%;
|
|
z-index: 999;
|
|
bottom: 10vh;
|
|
justify-content: center;
|
|
}
|
|
.main-add-box {
|
|
display: flex;
|
|
padding: 16px 20px;
|
|
width: 80%;
|
|
left: 50%;
|
|
justify-content: center;
|
|
} |