diff --git a/wasm/notebook/src/style.css b/wasm/notebook/src/style.css
index 7d93b480cc..ad1a9f73eb 100644
--- a/wasm/notebook/src/style.css
+++ b/wasm/notebook/src/style.css
@@ -59,9 +59,8 @@ h6 {
color: #fff;
}
-.item-center {
+.flex-grow {
flex-grow: 1;
- text-align: center;
}
.item-right {
@@ -74,6 +73,10 @@ h6 {
text-align: right;
}
+.text-center {
+ text-align: center;
+}
+
.text-black {
color: #1f2430;
}
@@ -172,7 +175,7 @@ ul.list-inline li {
input[type='url'] {
border: 1px solid black;
border-radius: 0px;
- width: 85%;
+ width: 75%;
font-size: 1rem;
padding: 4px;
font-family: monospace;
@@ -241,7 +244,14 @@ input[type='url'] {
overflow: auto;
}
-@media screen and (max-width: 700px) {
+@media screen and (min-width: 768px) {
+ .md-flex-grow {
+ flex-grow: 1;
+ }
+
+}
+
+@media screen and (max-width: 768px) {
.box {
width: 70%;
}
@@ -249,4 +259,20 @@ input[type='url'] {
.popup {
width: 70%;
}
+
+ .d-md-none {
+ display: none;
+ }
+
+ .d-sm-flex-direction-column {
+ flex-direction: column;
+ }
+
+ .sm-mt-5px {
+ margin-top: 5px !important;
+ }
+
+ #run-btn {
+ width: 45px;
+ }
}