2023-01-04 19:16:34 +00:00
|
|
|
.empty-table {
|
|
|
|
|
&__container {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
2023-01-17 16:23:46 +00:00
|
|
|
margin: 96px auto $pad-large; // 96px to top of div
|
2023-01-04 19:16:34 +00:00
|
|
|
max-width: 450px; // standard empty state width
|
|
|
|
|
gap: $pad-medium; // 16px between image, text, and buttons
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__inner {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: $pad-small; // 4px from header to info text
|
|
|
|
|
|
2023-01-24 17:55:43 +00:00
|
|
|
h3,
|
|
|
|
|
h3 a {
|
2023-01-04 19:16:34 +00:00
|
|
|
text-align: center;
|
|
|
|
|
font-size: $small;
|
|
|
|
|
font-weight: $bold;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: $core-fleet-blue;
|
|
|
|
|
font-size: $x-small;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
color: $core-fleet-black;
|
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
&::before {
|
|
|
|
|
content: "•";
|
|
|
|
|
color: $core-vibrant-blue;
|
|
|
|
|
margin-right: $pad-medium;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__cta-buttons {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
gap: $pad-medium; // 16px between buttons
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-06-06 21:30:51 +00:00
|
|
|
|
|
|
|
|
// more flexible styling for empty tables within tabs
|
|
|
|
|
.react-tabs {
|
|
|
|
|
.empty-table {
|
|
|
|
|
&__container {
|
|
|
|
|
align-self: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
margin: 0;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
min-height: 155px;
|
|
|
|
|
max-width: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|