Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcsjsb-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
640a4a57
authored
2023-06-21 17:26:43 +0800
by
yangwei
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
样式调整
1 parent
8ed93a4a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletions
src/views/login/index.vue
src/views/login/index.vue
View file @
640a4a5
<
template
>
<div
id=
"login"
>
<div
class=
"login-content-wrap"
>
<div
class=
"login-logo"
><img
src=
"./images/logo-login.svg"
/></div>
<div
class=
"login-con"
>
<div
class=
"login-wrap"
>
...
...
@@ -67,6 +68,7 @@
</div>
</div>
</div>
</div>
</
template
>
<
script
>
import
axios
from
"axios"
;
...
...
@@ -198,6 +200,11 @@ export default {
};
</
script
>
<
style
lang=
"scss"
scoped
>
input
::placeholder
{
color
:
#878787
;
font-size
:
14px
;
font-family
:
Arial
,
Helvetica
,
sans-serif
}
#login
{
width
:
100vw
;
height
:
100vh
;
...
...
@@ -205,11 +212,18 @@ export default {
background-size
:
100%
100%
;
overflow
:
hidden
;
position
:
relative
;
.login-content-wrap{
position
:
absolute
;
left
:
50%
;
top
:
50%
;
transform
:
translate
(
-50%
,
-50%
);
}
.login-logo
{
margin-top
:
18vh
;
height
:
70px
;
width
:
100%
;
text-align
:
center
;
position
:
absolute
;
top
:
-70px
;
}
.login-logo
img
{
height
:
100%
;
...
...
Please
register
or
sign in
to post a comment