Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
align-items: center;
display: flex;
flex-flow: row nowrap;
gap: theme.spacing(2); // give items a little breathing room if text is long
gap: theme.spacing(2);
justify-content: space-between;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,16 @@

.description {
color: theme.color("muted");

// this helps prevent long feed descriptions from looking gross
// and overflowing off the page, pushing the curren values off the page,
// too
overflow: initial;
text-overflow: initial;
white-space: normal;

@include theme.text("xs", "medium");

// reset the above on large devices, to match when the price feeds grid switches over
@include theme.breakpoint("2xl") {
overflow: hidden;
Expand Down
Loading