|
@@ -2,7 +2,10 @@
|
|
|
import Item from './item.astro';
|
|
import Item from './item.astro';
|
|
|
---
|
|
---
|
|
|
|
|
|
|
|
-<Item projectName="glance" title="Glance">
|
|
|
|
|
|
|
+<Item projectName="glance" title="Glance" layout={{
|
|
|
|
|
+mobile: { height: '300px' },
|
|
|
|
|
+ desktop: { left: "10%", top: "20%", width: "80%", height: '600px' }
|
|
|
|
|
+}} >
|
|
|
<div
|
|
<div
|
|
|
id="text205"
|
|
id="text205"
|
|
|
style="font-size: 22px; resize: none; padding: 10px; height:90%; overflow-y: hidden; padding-top: 0px; padding-bottom: 20px;"
|
|
style="font-size: 22px; resize: none; padding: 10px; height:90%; overflow-y: hidden; padding-top: 0px; padding-bottom: 20px;"
|
|
@@ -13,7 +16,13 @@ import Item from './item.astro';
|
|
|
A customizable dashboard optimized for E-Ink Displays
|
|
A customizable dashboard optimized for E-Ink Displays
|
|
|
</h2>
|
|
</h2>
|
|
|
|
|
|
|
|
- <iframe src="https://glance.simo.ng/demo" width="600" height="400" frameborder="0" allowfullscreen="">
|
|
|
|
|
- </iframe>
|
|
|
|
|
|
|
+ <iframe style="height: 100%; width: 100%; display: none;" class="desktop-only" src="https://glance.simo.ng/app"></iframe>
|
|
|
|
|
+ <style>
|
|
|
|
|
+ @media (min-width: 768px) {
|
|
|
|
|
+ .desktop-only {
|
|
|
|
|
+ display: block !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ </style>
|
|
|
</div>
|
|
</div>
|
|
|
</Item>
|
|
</Item>
|