Update Settings Page.

This commit is contained in:
Bruce
2025-12-14 11:25:19 +08:00
parent a40ff21fe6
commit 4668f09dac
2 changed files with 23 additions and 0 deletions

View File

@@ -101,6 +101,13 @@
flex-wrap: wrap;
align-content: flex-start;
justify-content: flex-start;
display: -ms-flexbox;
-ms-flex-direction: row;
-ms-flex-wrap: wrap;
-ms-flex-line-pack: start;
/* align-content: flex-start */
-ms-flex-pack: start;
/* justify-content: flex-start */
position: relative;
width: 100%;
height: calc(100% - 120px);

View File

@@ -50,6 +50,15 @@
align-content: flex-start;
justify-content: flex-start;
align-items: flex-start;
display: -ms-flexbox;
-ms-flex-direction: column;
-ms-flex-wrap: wrap;
-ms-flex-line-pack: start;
/* align-content */
-ms-flex-pack: start;
/* justify-content */
-ms-flex-align: start;
/* align-items */
box-sizing: border-box;
position: relative;
left: 0px;
@@ -137,6 +146,13 @@
flex-wrap: nowrap;
align-content: flex-end;
justify-content: flex-start;
display: -ms-flexbox;
-ms-flex-direction: column;
-ms-flex-wrap: nowrap;
-ms-flex-line-pack: end;
/* align-content: flex-end */
-ms-flex-pack: start;
/* justify-content: flex-start */
pointer-events: none;
}
</style>