Files
mattermost/webapp/sass/components/_oauth.scss

48 lines
847 B
SCSS
Raw Normal View History

2016-03-14 22:35:57 +05:00
@charset 'UTF-8';
.prompt {
background: $white;
border: 1px solid $light-gray;
2016-03-14 22:35:57 +05:00
margin: 50px auto;
max-width: 90%;
padding: 1em 2em 0;
2016-03-14 22:35:57 +05:00
width: 600px;
.prompt__heading {
display: table;
font-size: em(18px);
2016-03-14 22:35:57 +05:00
line-height: normal;
margin: 1em 0;
table-layout: fixed;
2016-03-14 22:35:57 +05:00
width: 100%;
> div {
display: table-cell;
vertical-align: top;
&:first-child {
width: 70px;
}
2016-03-14 22:35:57 +05:00
}
img {
margin-right: 15px;
}
}
.prompt__allow {
font-size: em(20px);
margin: 1em 0;
2016-03-14 22:35:57 +05:00
}
.prompt__buttons {
border-top: 1px solid $light-gray;
2016-03-14 22:35:57 +05:00
padding: 1.5em 0;
text-align: right;
2016-03-14 22:35:57 +05:00
}
.prompt__error {
display: inline-block;
}
2016-03-14 22:35:57 +05:00
}