zcash-grant-system/frontend/client/components/Template/index.less

44 lines
755 B
Plaintext
Raw Normal View History

@import '~styles/variables.less';
.Template {
display: flex;
flex-direction: column;
min-height: 100vh;
&-content {
display: flex;
justify-content: center;
flex: 1;
padding: 0 2.5rem;
.is-fullscreen & {
padding: 0;
}
&-inner {
width: 100%;
max-width: @max-content-width;
margin: 0 auto;
padding-top: 2.5rem;
padding-bottom: 2.5rem;
min-height: 280px;
.is-fullscreen & {
padding-top: 0;
padding-bottom: 0;
max-width: none;
}
.is-centered & {
align-self: center;
}
&-loading {
display: flex;
align-items: center;
justify-content: center;
height: 280px;
}
}
}
}