fix(console): username overflow when suffix is shown (#4007)

* fix(console): username overflow when suffix

* rm logs
This commit is contained in:
Max Peintner 2022-07-21 11:15:35 +02:00 committed by GitHub
parent 95481c2e0b
commit 6a3689e05a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions

View File

@ -9,7 +9,7 @@
.ng-untouched { .ng-untouched {
.cnsl-error { .cnsl-error {
visibility: hidden; visibility: hidden;
transition: visibility .2 ease; transition: visibility 0.2 ease;
} }
} }
@ -24,10 +24,14 @@
[cnslSuffix] { [cnslSuffix] {
position: absolute; position: absolute;
right: .5rem; right: 0.5rem;
top: 9px; top: 9px;
height: inherit; height: inherit;
vertical-align: middle; vertical-align: middle;
max-width: 150px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} }
input { input {

View File

@ -1,5 +1,5 @@
.user-create-main-content { .user-create-main-content {
max-width: 35rem; max-width: 45rem;
@media only screen and (max-width: 500px) { @media only screen and (max-width: 500px) {
padding: 0 0.5rem; padding: 0 0.5rem;