Skip to content
Open
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
2 changes: 1 addition & 1 deletion src/components/character/Donate.module.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.root {
position: fixed;
top: 130px;
right: var(--margin);
right: calc(var(--margin) - 1cm);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

centimeters have not been used yet in the codebase, please use some of the constants in the variables.css

width: var(--col1);
float: right;
text-align: center;
Expand Down
3 changes: 2 additions & 1 deletion src/components/examples/ExamplesList.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
}

.item {
flex-basis: calc(100% / 5);
flex: 0 0 calc(25% - 2 * var(--gutter));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The fix works, could you research if you could scale the container element instead?

max-width: calc(25% - 2 * var(--gutter));

& h4 {
font-size: var(--text-regular);
Expand Down