mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
38 lines
562 B
Plaintext
38 lines
562 B
Plaintext
@import '../constants/colors';
|
|
|
|
.response-pane {
|
|
position: relative;
|
|
|
|
.overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
z-index: 100;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
|
|
& > * {
|
|
max-width: 30rem;
|
|
}
|
|
|
|
.btn {
|
|
border-color: var(--hl-xl);
|
|
|
|
&:hover {
|
|
background: var(--hl-sm);
|
|
border-color: var(--hl);
|
|
}
|
|
}
|
|
|
|
i.fa {
|
|
font-size: 4rem;
|
|
}
|
|
}
|
|
}
|