Skip to content

Commit

Permalink
Merge pull request #11 from OpenTUT/dev/hori
Browse files Browse the repository at this point in the history
ok
  • Loading branch information
horih authored Sep 26, 2024
2 parents 956fe3b + 5f16040 commit 32231a7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/GroupCard.module.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@media (max-width: 768px) {
@media (max-width: 600px) {
.mobileBreak {
display: block;
width: 100%;
Expand Down
8 changes: 4 additions & 4 deletions src/components/GroupCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const GroupCard: React.FC<GroupCardProps> = ({ group, setGroup }) => {
</h2>
<p
style={{
fontSize: "1.0rem",
fontSize: "1rem",
color: "#333",
margin: 0,
display: "flex",
Expand All @@ -72,7 +72,7 @@ const GroupCard: React.FC<GroupCardProps> = ({ group, setGroup }) => {
flexWrap: "wrap",
}}
>
<IconWorld strokeWidth={2} style={{ margin: "0 0.5rem 0 1rem" }} />
<IconWorld strokeWidth={2} style={{ margin: "0 0.5rem 0 0" }} />
<a
href={group.url}
target="_blank"
Expand All @@ -89,9 +89,9 @@ const GroupCard: React.FC<GroupCardProps> = ({ group, setGroup }) => {
: group.url}
</a>
<span className={classes.mobileBreak} />
<IconMapPin strokeWidth={2} style={{ marginRight: "0.5rem" }} />
<IconMapPin strokeWidth={2} style={{ margin: "0 0.5rem 0 0" }} />
{group.room}
<IconClock strokeWidth={2} style={{ margin: "0 0.5rem 0 1rem" }} />
<IconClock strokeWidth={2} style={{ margin: "0 0.5rem 0 0" }} />
{group.date}
</p>
<p
Expand Down

0 comments on commit 32231a7

Please sign in to comment.