Skip to content

Commit b0bea35

Browse files
committed
chore: update test files for media query dropdown
1 parent 41393a2 commit b0bea35

3 files changed

Lines changed: 27 additions & 1 deletion

File tree

docs/API-Reference/command/Commands.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -734,6 +734,12 @@ Opens support resources
734734
## HELP\_GET\_PRO
735735
Opens Phoenix Pro page
736736

737+
**Kind**: global variable
738+
<a name="HELP_CANCEL_TRIAL"></a>
739+
740+
## HELP\_CANCEL\_TRIAL
741+
Cancels Phoenix Pro trial
742+
737743
**Kind**: global variable
738744
<a name="HELP_VIEW_LICENSE"></a>
739745

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Media Query Test</title>
6+
<style>
7+
body { margin: 0; font-family: sans-serif; }
8+
#content { padding: 20px; }
9+
@media (max-width: 768px) {
10+
#content { background: lightblue; }
11+
}
12+
@media (max-width: 480px) {
13+
#content { background: lightgreen; }
14+
}
15+
</style>
16+
</head>
17+
<body>
18+
<div id="content">Media query test page</div>
19+
</body>
20+
</html>

tracking-repos.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"phoenixPro": {
3-
"commitID": "30f7c0134525df5d1f055fcea9cc276025cb1a68"
3+
"commitID": "eb905df1b6d728d57118f012ba787d42a2eaa7fb"
44
}
55
}

0 commit comments

Comments
 (0)