insomnia/app/ui/css/components/response-pane.less

54 lines
841 B
Plaintext
Raw Normal View History

@import '../constants/colors';
.response-pane {
position: relative;
.tag {
color: var(--color-font);
}
2017-01-23 22:41:31 +00:00
.overlay {
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
z-index: 9;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: hidden;
2016-10-02 22:10:43 +00:00
text-align: center;
& > * {
max-width: 30rem;
}
.btn {
2017-01-23 22:41:31 +00:00
border-color: var(--hl-xl);
2016-09-13 18:31:07 +00:00
&:hover {
2017-01-23 22:41:31 +00:00
background: var(--hl-sm);
border-color: var(--hl);
2016-09-13 18:31:07 +00:00
}
}
i.fa {
font-size: 4rem;
}
}
.response-pane__notify {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: hidden;
text-align: center;
height: 100%;
max-width: 30rem;
margin: auto;
}
}