mirror of
https://github.com/google/nomulus
synced 2026-01-08 15:21:46 +00:00
55 lines
896 B
SCSS
55 lines
896 B
SCSS
.console-app {
|
|
$min-width: 756px;
|
|
|
|
&__empty-domains {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
&-icon {
|
|
transform: scale(3);
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
}
|
|
|
|
&-domains__download {
|
|
position: absolute;
|
|
top: -55px;
|
|
right: 0;
|
|
}
|
|
|
|
&__domains {
|
|
width: 100%;
|
|
overflow: auto;
|
|
}
|
|
|
|
&__domains-filter {
|
|
min-width: $min-width !important;
|
|
width: 100%;
|
|
}
|
|
|
|
&__domains-table-parent {
|
|
position: relative;
|
|
width: fit-content;
|
|
min-width: 100%;
|
|
}
|
|
|
|
&__domains-table {
|
|
min-width: $min-width !important;
|
|
}
|
|
|
|
&__domains-spinner {
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
position: absolute;
|
|
height: 100%;
|
|
width: 100%;
|
|
background: rgba(255, 255, 255, 0.6);
|
|
}
|
|
|
|
.mat-mdc-paginator {
|
|
min-width: $min-width !important;
|
|
}
|
|
}
|