fix(editor): Fix workflow name input size on desktop (no-changelog) (#12490)

This commit is contained in:
Alex Grozav
2025-01-07 19:06:25 +02:00
committed by GitHub
parent 976586fbfd
commit 10148c9ad3

View File

@@ -801,7 +801,6 @@ $--header-spacing: 20px;
color: $custom-font-dark;
font-size: 15px;
display: block;
min-width: 150px;
}
.activator {
@@ -848,6 +847,14 @@ $--header-spacing: 20px;
gap: var(--spacing-m);
flex-wrap: nowrap;
}
@include mixins.breakpoint('xs-only') {
.name {
:deep(input) {
min-width: 180px;
}
}
}
</style>
<style module lang="scss">