Adjust icon badge size (#15292)

* adjust badge size

* convert rem to px
This commit is contained in:
Aditya Bist
2021-04-29 18:42:03 -07:00
committed by GitHub
parent c72fdeb019
commit adbbe7e6b0
2 changed files with 3 additions and 3 deletions

View File

@@ -168,13 +168,13 @@
/* Connected badge */
.monaco-list .connection-tile .connection-status-badge.connected {
border: 0.12rem solid rgba(59, 180, 74, 100%);
border: 2.4px solid rgba(59, 180, 74, 100%);
background: rgba(59, 180, 74, 100%);
}
/* Disconnected badge */
.monaco-list .connection-tile .connection-status-badge.disconnected {
border: 0.12rem solid rgba(208, 46, 0, 100%);
border: 2.4px solid rgba(208, 46, 0, 100%);
background: rgba(255, 255, 255, 80%);
}