refactor(ui): localize component styles

This commit is contained in:
2026-08-09 13:47:01 +05:30
parent b6bd5cfcb7
commit 54a93c1d14
37 changed files with 4508 additions and 3832 deletions
+31
View File
@@ -89,4 +89,35 @@ items: unknown[] = []
<slot />
</div>
}
style {
.wire-next--button-group {
display: inline-flex;
align-items: stretch;
width: fit-content;
max-width: 100%;
isolation: isolate;
}
.wire-next--button-group[data-orientation="vertical"] {
flex-direction: column;
}
.wire-next--button-group[data-attached="false"] {
gap: 0.5rem;
}
.wire-next--button-group[data-disabled="true"] {
cursor: not-allowed;
opacity: 0.6;
}
@media (max-width: 480px) {
.wire-next--button-group[data-responsive="true"] {
display: flex;
width: 100%;
flex-direction: column;
}
}
}
}