diff --git a/src/app/account/login/login.component.scss b/src/app/account/login/login.component.scss index 2397523..621df14 100644 --- a/src/app/account/login/login.component.scss +++ b/src/app/account/login/login.component.scss @@ -1,3 +1,4 @@ + #login{ .mx-auto{ margin: 10px 0; @@ -9,4 +10,9 @@ border: none; outline: none; } -} \ No newline at end of file +} +//圆角边框 +.rect-radius { + border: 1px solid; + border-radius: 30px !important; +} diff --git a/src/app/app.component.html b/src/app/app.component.html index 2f2747e..6b6f961 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -1,43 +1,41 @@ - + - - + \ No newline at end of file diff --git a/src/styles.scss b/src/styles.scss index 74c75b3..01d9aa6 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -4,3 +4,17 @@ body{ background: rgb(80, 138, 202); } +// 自定义 navBar 背景色 +.bg-light-self { + background-color: rgb(141, 198, 248) !important; +} + +// navBar 第一栏字体放大 +.nav-text-lg { + font-size: 1.5rem; +} + +// 按钮圆角 +.btn-border { + border-radius: 1rem; +}