Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions apps/tangle-cloud/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,23 @@ body {
* vendor.css doesn't ship these (it only includes classes sandbox-ui itself
* uses), so cloud has to define them. Bound to cloud tokens; no !important
* because no other rule defines them. */

/* The shared <Card variant="sandbox"> is a frosted-glass surface by design
* (translucent bg + a linear-gradient overlay + backdrop-blur). On cloud's
* solid bg it reads as an inconsistent sheen vs the flat bg-card surfaces.
* Force it solid + kill the blur so all cloud cards share one surface. */
[data-sandbox-ui] .bg-white\/65,
[data-sandbox-ui] .dark\:bg-mono-200\/40 {
background-color: var(--bg-card);
background-image: none;
}
[data-sandbox-ui] .bg-\[linear-gradient\(180deg,
[data-sandbox-ui] .dark\:bg-\[linear-gradient\(180deg,
[data-sandbox-ui] .backdrop-blur-\[18px\] {
background-image: none;
backdrop-filter: none;
-webkit-backdrop-filter: none;
}
[data-sandbox-ui] .bg-background {
background-color: var(--bg-root, hsl(var(--background)));
}
Expand Down
Loading