fix: max width container, text ellipsis overflow (#2862)

This commit is contained in:
Max Peintner
2021-12-17 08:48:20 +01:00
committed by GitHub
parent c5d6325897
commit cc04067da3

View File

@@ -7,6 +7,7 @@
align-items: center;
padding: 0;
min-width: 220px;
max-width: 240px;
padding-bottom: 0.5rem;
position: relative;
@@ -37,7 +38,11 @@
width: 100%;
button {
min-height: 36px;
position: relative;
overflow: hidden;
text-align: start;
text-overflow: ellipsis;
}
}
}