summaryrefslogtreecommitdiffhomepage
path: root/cloud/app/src/routes/index.css
diff options
context:
space:
mode:
authorJay V <[email protected]>2025-09-02 16:35:39 -0400
committerJay V <[email protected]>2025-09-02 17:28:35 -0400
commit023c4532c1767128e510237f76cc5a4e34582a5e (patch)
tree3df2be4dde4b35255517aa7ce9731e6d35749636 /cloud/app/src/routes/index.css
parent042802848ddd536f10076b6822db73c2a7de362d (diff)
downloadopencode-023c4532c1767128e510237f76cc5a4e34582a5e.tar.gz
opencode-023c4532c1767128e510237f76cc5a4e34582a5e.zip
ignore: cloud lander
Diffstat (limited to 'cloud/app/src/routes/index.css')
-rw-r--r--cloud/app/src/routes/index.css32
1 files changed, 16 insertions, 16 deletions
diff --git a/cloud/app/src/routes/index.css b/cloud/app/src/routes/index.css
index a2fa654d2..0a903026c 100644
--- a/cloud/app/src/routes/index.css
+++ b/cloud/app/src/routes/index.css
@@ -309,27 +309,27 @@
grid-template-rows: var(--images-height);
border-top: 2px solid var(--color-border);
- & > div.left {
+ & > [data-slot="left"] {
display: flex;
grid-row: 1;
grid-column: 1;
}
- & > div.right {
+ & > [data-slot="right"] {
display: grid;
grid-template-rows: 1fr 1fr;
grid-row: 1;
grid-column: 2;
border-left: 2px solid var(--color-border);
- & > div.row1 {
+ & > [data-slot="row1"] {
display: flex;
grid-row: 1;
border-bottom: 2px solid var(--color-border);
height: calc(var(--images-height) / 2);
}
- & > div.row2 {
+ & > [data-slot="row2"] {
display: flex;
grid-row: 2;
height: calc(var(--images-height) / 2);
@@ -384,24 +384,24 @@
}
}
- & > div.left figure {
+ & > [data-slot="left"] figure {
height: var(--images-height);
box-sizing: border-box;
}
- & > div.right figure {
+ & > [data-slot="right"] figure {
height: calc(var(--images-height) / 2);
box-sizing: border-box;
}
- & > div.left img {
+ & > [data-slot="left"] img {
width: 100%;
height: 100%;
min-width: 0;
object-fit: contain;
}
- & > div.right img {
+ & > [data-slot="right"] img {
width: 100%;
height: calc(100% - 2rem);
object-fit: contain;
@@ -415,30 +415,30 @@
grid-template-rows: auto auto;
}
- & > div.left {
+ & > [data-slot="left"] {
grid-row: 1;
grid-column: 1;
}
- & > div.right {
+ & > [data-slot="right"] {
grid-row: 2;
grid-column: 1;
border-left: none;
border-top: 2px solid var(--color-border);
- & > div.row1,
- & > div.row2 {
+ & > [data-slot="row1"],
+ & > [data-slot="row2"] {
height: auto;
}
}
- & > div.left figure,
- & > div.right figure {
+ & > [data-slot="left"] figure,
+ & > [data-slot="right"] figure {
height: auto;
}
- & > div.left img,
- & > div.right img {
+ & > [data-slot="left"] img,
+ & > [data-slot="right"] img {
width: 100%;
height: auto;
max-height: none;