Support event handler (trigger) to customize the content of the admin dashboard

This commit is contained in:
Kijin Sung 2023-10-27 00:22:12 +09:00
parent 72ab8ea8fc
commit 286dc76e78
4 changed files with 54 additions and 24 deletions

View file

@ -1281,19 +1281,21 @@ margin-bottom: 10px;
/* Dashboard */
.x .dashboard {
display: flex;
align-items: flex-start;
justify-content: space-between;
}
.x .dashboard:after {
content: "";
display: block;
clear: both;
.x .dashboard > div {
width: calc(50% - 12.5px);
}
.x .dashboard>div {
float: right;
width: 49%;
}
.x .dashboard>div:first-child {
float: left;
@media all and (max-width: 800px) {
.x .dashboard {
flex-direction: column;
align-items: stretch;
}
.x .dashboard > div {
width: 100%;
}
}
.x .dashboard>div>section {
position: relative;