summaryrefslogtreecommitdiffstats
path: root/webapp/sass/responsive
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/sass/responsive')
-rw-r--r--webapp/sass/responsive/_mobile.scss13
-rw-r--r--webapp/sass/responsive/_tablet.scss11
2 files changed, 18 insertions, 6 deletions
diff --git a/webapp/sass/responsive/_mobile.scss b/webapp/sass/responsive/_mobile.scss
index e3fac21f7..21c3135c2 100644
--- a/webapp/sass/responsive/_mobile.scss
+++ b/webapp/sass/responsive/_mobile.scss
@@ -738,16 +738,17 @@
.inner-wrap {
@include single-transition(all, .5s, ease);
- &:before{
- content:"";
+
+ &:before {
//Some trickery in order for the z-index transition to happen immediately on move-in and delayed on move-out.
- transition: background-color 0.5s ease, z-index 0s ease 0.5s;
background-color: transparent;
+ content: '';
height: 100%;
- width: calc(100% + 30px);
left: -15px;
position: absolute;
top: 0;
+ transition: background-color 0.5s ease, z-index 0s ease 0.5s;
+ width: calc(100% + 30px);
z-index: 0;
}
@@ -755,9 +756,9 @@
@include translate3d(290px, 0, 0);
&:before {
+ background-color: rgba(0, 0, 0, .4);
+ transition: background-color .5s ease;
z-index: 9999;
- transition: background-color 0.5s ease;
- background-color: rgba(0, 0, 0, 0.4);
}
}
diff --git a/webapp/sass/responsive/_tablet.scss b/webapp/sass/responsive/_tablet.scss
index db2a8d7b9..cb5216dea 100644
--- a/webapp/sass/responsive/_tablet.scss
+++ b/webapp/sass/responsive/_tablet.scss
@@ -1,6 +1,17 @@
@charset 'UTF-8';
@media screen and (max-width: 960px) {
+ .signup-team__container {
+ &.branded {
+ display: block;
+ margin: 0 auto;
+ max-width: 380px;
+
+ .signup__markdown {
+ display: none;
+ }
+ }
+ }
.sidebar--right {
@include single-transition(all, .5s, ease);
@include translateX(100%);