forked from microsoft/opensource.microsoft.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_devOnly.scss
More file actions
39 lines (33 loc) · 786 Bytes
/
_devOnly.scss
File metadata and controls
39 lines (33 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// ---------------------------------------------------------------------
// REMOVE FOR PRODUCTION
// ---------------------------------------------------------------------
#__bs_notify__ {
opacity: 0;
bottom: 0 !important;
top: auto !important;
height: 50px;
}
body.localhost:after {
position: fixed;
z-index: 1000;
bottom: 0;
right: 0;
display: inline-block;
color: white;
font-size: 8px;
background-color: rgba(0, 0, 0, 0.5);
padding: 2px;
content: 'Mobile';
@include start-at($small) {
content: 'Small';
}
@include start-at($medium) {
content: 'Medium';
}
@include start-at($large) {
content: 'Large';
}
@include start-at($xlarge) {
content: 'x-large';
}
}