21 lines
352 B
CSS
21 lines
352 B
CSS
.serversTableContainer {
|
|
display: flex;
|
|
overflow: scroll;
|
|
height: 500px;
|
|
width: 100%;
|
|
}
|
|
.refresh {
|
|
display: flex;
|
|
margin-left: auto;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 40px;
|
|
height: 100%;
|
|
border: 1px solid white;
|
|
}
|
|
.refresh > img {
|
|
width: 20px;
|
|
height: 20px;
|
|
cursor: pointer;
|
|
}
|