2
0
mirror of https://github.com/esiur/iui.git synced 2025-12-14 02:20:25 +00:00
This commit is contained in:
2025-11-26 18:47:05 +03:00
parent 3c70801d08
commit 67e4b5268b
9 changed files with 239 additions and 6 deletions

View File

@@ -2611,10 +2611,16 @@ html[dir='rtl'] .multiselect-list-remove {
}
.app {
display: block;
width: 100vw;
height: 100vh;
}
.router, i-router {
display: block;
position: relative;
height: 100%;
}
.route {
@@ -2627,6 +2633,7 @@ html[dir='rtl'] .multiselect-list-remove {
left: 10px;
top: 10px;
width: calc(100% - 20px);
min-height: 20px;
}
.route:not([selected]) {
@@ -3145,3 +3152,26 @@ html[dir='rtl'] .navbar-item[level='3'] > .link {
color: white;
padding: 4px;
}
.radio-repeat{
display: flex;
gap: 10px;
border: 1px solid #dadada;
border-radius: 10px;
padding: 4px;
}
.radio-repeat > *
{
border-radius: 10px;
padding: 4px;
cursor: pointer;
background: #e0e0e0;
}
.radio-repeat > .radio-selected{
background: #487aba;
color: white;
}