-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tailwind 3 and Switch UI scaling from a base-10 to base-16 #1821
base: main
Are you sure you want to change the base?
Changes from 10 commits
38d8195
29c98a0
0932d06
efcfab4
6879967
1032528
4c8d436
d520258
ae61da3
746ca0f
8e31245
5841206
24e891c
ac34134
1e3aaa9
6b36702
03ace51
2dd86df
5efcf80
38fd91d
eab2599
11d9410
e0c7c69
72324ba
33cf259
82275d0
780ea47
91516d2
67cc4a5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,9 +28,7 @@ export const App = () => { | |
<ErrorMessage /> | ||
<p className="messageTextStyle">{translate("select_date")}</p> | ||
<div className="schedule"> | ||
<div> | ||
<Calendar /> | ||
</div> | ||
<Calendar /> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removing this unclassed div helped make the scheduler responsive don to 320px |
||
<DateTime /> | ||
<SetDateTime /> | ||
</div> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,18 +13,21 @@ export const Confirmation = () => { | |
_24hr === "on" ? time : dayjs(date).format(translate("time_format")); | ||
|
||
return selected.length > 0 && time ? ( | ||
<div> | ||
<div className="confirmation set"> | ||
<div className="confirmation set"> | ||
<i | ||
aria-hidden="true" | ||
class="confirmationIcon fa-xl fa-solid fa-paper-plane" | ||
></i> | ||
|
||
<div className="confirmationMessage"> | ||
<p>{translate("message_will_be_sent")}</p> | ||
<p> | ||
<strong> | ||
<p className="confirmationTime"> | ||
<time datetime={date}> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added a |
||
{translate("date_prefix")} | ||
{dayjs(date).format(translate("date_format"))} {translate("at")}{" "} | ||
{timeFormat} | ||
</strong> | ||
</time> | ||
</p> | ||
</div> | ||
<div> | ||
<p>{translate("cancel")}</p> | ||
</div> | ||
</div> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For the scheduler updates