mirror of
https://github.com/google/nomulus
synced 2026-07-26 18:12:38 +00:00
42 lines
632 B
SCSS
42 lines
632 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 {
|
|
position: relative;
|
|
&__download {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
}
|
|
}
|
|
|
|
&__domains {
|
|
width: 100%;
|
|
overflow: auto;
|
|
}
|
|
|
|
&__domains-filter {
|
|
min-width: $min-width !important;
|
|
width: 100%;
|
|
}
|
|
|
|
&__domains-table {
|
|
min-width: $min-width !important;
|
|
}
|
|
|
|
.mat-mdc-paginator {
|
|
min-width: $min-width !important;
|
|
}
|
|
}
|