Skip to content

Commit 7faba5c

Browse files
committed
Move CSS files for fixed syntax issues to archive folder
1 parent b865378 commit 7faba5c

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/**
2+
* FUNCTION ARITHMETIC OPERATORS
3+
*/
4+
5+
.example {
6+
margin-block-start: clamp(15px, 0.805rem + 0.64vw, 18px);
7+
margin-block-end: clamp(15px, 0.805rem - 0.64vw, 18px);
8+
}
9+
10+
.other-examples {
11+
width: clamp(100px, calc(30% / 2rem + 10px), 900px);
12+
width: min(1000px, calc(70% + 100px));
13+
font-size: clamp(1.1rem, 0.7153rem + 1.6368vw, 1.5rem);
14+
width: max(300px, 50% + 20px);
15+
width: min(300px, 50% + 20px);
16+
height: calc(var(--base-height) + 10%);
17+
font-size: clamp(15px, 0.805rem + 0.64vw, 18px);
18+
width: calc(100% - 20px);
19+
}

.dev-assets/syntax-issues/clamp-arithmetic-operators.css

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)