mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-05-31 18:24:10 +00:00
45 lines
786 B
CSS
45 lines
786 B
CSS
|
|
.mb-12 {
|
||
|
|
margin-bottom: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.version-list {
|
||
|
|
width: 100%;
|
||
|
|
border: 1px solid rgba(5, 5, 5, 0.06);
|
||
|
|
border-radius: 8px;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
body.dark .version-list,
|
||
|
|
html[data-theme='ultra-dark'] .version-list {
|
||
|
|
border-color: rgba(255, 255, 255, 0.12);
|
||
|
|
}
|
||
|
|
|
||
|
|
.version-list-item {
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
align-items: center;
|
||
|
|
padding: 12px 24px;
|
||
|
|
border-bottom: 1px solid rgba(5, 5, 5, 0.06);
|
||
|
|
}
|
||
|
|
|
||
|
|
.version-list-item:last-child {
|
||
|
|
border-bottom: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
body.dark .version-list-item,
|
||
|
|
html[data-theme='ultra-dark'] .version-list-item {
|
||
|
|
border-bottom-color: rgba(255, 255, 255, 0.08);
|
||
|
|
}
|
||
|
|
|
||
|
|
.reload-icon {
|
||
|
|
cursor: pointer;
|
||
|
|
font-size: 16px;
|
||
|
|
margin-right: 8px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.actions-row {
|
||
|
|
display: flex;
|
||
|
|
justify-content: flex-end;
|
||
|
|
margin-top: 12px;
|
||
|
|
}
|