56 lines
942 B
SCSS
56 lines
942 B
SCSS
span {
|
|
padding: 0 5px !important;
|
|
}
|
|
|
|
tr {
|
|
display: table;
|
|
width: calc(100% - 5px);
|
|
table-layout: fixed;
|
|
}
|
|
|
|
#chipInputField {
|
|
display: none;
|
|
}
|
|
|
|
.disconnected {
|
|
background-color: rgb(255, 120, 120);;
|
|
}
|
|
|
|
.connectede {
|
|
background-color: rgb(120, 255, 143);;
|
|
}
|
|
|
|
ul.selectedAreasList {
|
|
padding: 0;
|
|
list-style-type: none;
|
|
display: inline-flex;
|
|
flex-wrap: wrap;
|
|
overflow-wrap: normal;
|
|
|
|
li {
|
|
margin-left: 4px;
|
|
margin-top: 2px;
|
|
padding: 0 6px;
|
|
width: fit-content;
|
|
background-color: gray;
|
|
text-align: center;
|
|
color: white;
|
|
outline: none;
|
|
border: none;
|
|
border-radius: 4px;
|
|
display: flex;
|
|
align-items: center;
|
|
button {
|
|
width: fit-content;
|
|
padding: 0;
|
|
}
|
|
}
|
|
.ui-dropdown {
|
|
width: 200px;
|
|
height: 30px !important;
|
|
font-size:20px;
|
|
.p-dropdown {
|
|
height: 30px !important;
|
|
}
|
|
}
|
|
} |