mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-27 14:22:54 +09:00
Support event handler (trigger) to customize the content of the admin dashboard
This commit is contained in:
parent
72ab8ea8fc
commit
286dc76e78
4 changed files with 54 additions and 24 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue