Skip to content

Commit

Permalink
style: change font size of email input to 16px from 14px
Browse files Browse the repository at this point in the history
  • Loading branch information
moolmin committed Sep 29, 2024
1 parent d6eb535 commit 88357ad
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 10 deletions.
3 changes: 2 additions & 1 deletion src/app/(pages)/login/email/page.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@
text-underline-position: under;
font-size: 14px;
margin-top: 20px;
}
}

27 changes: 19 additions & 8 deletions src/app/global.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
:root {
--primary-color: #FF5B0F;
--grey-color: #4C4C4C;
--primary-color: #ff5b0f;
--grey-color: #4c4c4c;
}

button {
border: none;
outline: none;
cursor: pointer;
}
}

html,
body,
Expand Down Expand Up @@ -147,15 +147,26 @@ button {
cursor: pointer;
}

li {
li {
list-style-type: none;
}

h1, h2 {
h1,
h2 {
margin-top: 0;
}

:where(.css-dev-only-do-not-override-1ws2rw4).ant-select-outlined:not(.ant-select-customize-input) .ant-select-selector {
font-size: 16px;
}
:where(.css-dev-only-do-not-override-1ws2rw4).ant-select-outlined:not(
.ant-select-customize-input
)
.ant-select-selector {
font-size: 16px !important;
}

.ant-select-show-search:where(
.css-dev-only-do-not-override-yhwyix
).ant-select:not(.ant-select-customize-input)
.ant-select-selector
input {
font-size: 16px;
}
1 change: 0 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { ReactNode } from "react";
import dynamic from "next/dynamic";
import "./global.css";
import "antd/dist/reset.css";
import { AntdRegistry } from "@ant-design/nextjs-registry";
Expand Down

0 comments on commit 88357ad

Please sign in to comment.