mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-12-13 01:01:29 -05:00
e65ba61e7a
Having it in the nav was causing issues with positioning the banner, as evidenced by the teacher banner’s `-20px` setting
38 lines
646 B
SCSS
38 lines
646 B
SCSS
@import "../../colors";
|
|
@import "../../frameless";
|
|
|
|
.teacher-banner {
|
|
background-color: $ui-purple;
|
|
min-height: 65px;
|
|
|
|
&.title-banner {
|
|
transition: none;
|
|
margin-bottom: 0;
|
|
text-align: left;
|
|
|
|
h3,
|
|
p {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
text-align: left;
|
|
}
|
|
}
|
|
|
|
h3 {
|
|
color: $ui-white;
|
|
}
|
|
|
|
.flex-row {
|
|
&.inner {
|
|
justify-content: space-between;
|
|
}
|
|
}
|
|
|
|
.button {
|
|
margin-left: 10px;
|
|
background-color: $ui-white;
|
|
padding: 13px 20px;
|
|
color: $ui-blue;
|
|
}
|
|
}
|