selfprivacy.org/_vendor/github.com/google/docsy/assets/scss/_drawio.scss

40 lines
563 B
SCSS
Raw Normal View History

2024-04-21 23:04:16 +00:00
div.drawio {
2024-04-25 22:15:39 +00:00
display: inline-block;
position: relative;
2024-04-21 23:04:16 +00:00
2024-04-25 22:15:39 +00:00
button {
@extend .btn;
@extend .btn-outline-primary;
position: absolute;
bottom: 5px;
right: 5px;
padding: 0.4em 0.5em;
font-size: 0.8em;
display: none;
}
2024-04-21 23:04:16 +00:00
2024-04-25 22:15:39 +00:00
&:hover button {
display: inline;
}
}
2024-04-21 23:04:16 +00:00
div.drawioframe {
2024-04-25 22:15:39 +00:00
position: fixed;
height: 100%;
width: 100%;
top: 0;
left: 0px;
z-index: 1000;
background: #000b;
border: 0;
2024-04-21 23:04:16 +00:00
2024-04-25 22:15:39 +00:00
iframe {
position: absolute;
height: 90%;
width: 90%;
top: 5%;
left: 5%;
z-index: 1010;
}
2024-04-21 23:04:16 +00:00
}