Increase tooltip max size and fix issue with overflow in app overview
This commit is contained in:
parent
86e30d2ae4
commit
564a98bedc
|
@ -31,4 +31,12 @@
|
|||
.spectrum-Tooltip-tip {
|
||||
border-top-color: var(--spectrum-global-color-gray-500);
|
||||
}
|
||||
.spectrum-Tooltip {
|
||||
max-width: 280px;
|
||||
}
|
||||
.spectrum-Tooltip-label {
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -28,7 +28,6 @@
|
|||
.dash-card {
|
||||
background: var(--spectrum-alias-background-color-primary);
|
||||
border-radius: var(--border-radius-s);
|
||||
overflow: hidden;
|
||||
min-height: 170px;
|
||||
}
|
||||
.dash-card-header {
|
||||
|
|
Loading…
Reference in New Issue