Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
web-framework-temp
/
vue-cli3-vt-template-master
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
4cfc122b
authored
2024-03-01 16:59:34 +0800
by
simon
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
placeholder颜色
1 parent
fa469bab
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
0 deletions
src/main.js
src/styles/index.scss
src/main.js
View file @
4cfc122
...
...
@@ -3,6 +3,12 @@ import VueApp from './App.vue'
import
router
from
'./router'
import
store
from
'./store'
import
{
getToken
,
setToken
,
removeToken
}
from
'@/utils/auth'
import
api
from
'@/api/api'
import
{
httpGet
,
...
...
src/styles/index.scss
View file @
4cfc122
...
...
@@ -56,4 +56,19 @@ div {
background-color
:
#fff
;
border-radius
:
10px
;
padding
:
28px
24px
;
}
// 去掉van-popup背景颜色
.popup
{
background-color
:
transparent
;
}
/* 设置placeholder文本颜色为 #c0c4cc 同vantUI */
/* Chrome、Safari等WebKit内核浏览器 */
:-webkit-input-placeholder
{
color
:
#c0c4cc
;
}
::placeholder
{
color
:
#c0c4cc
;
}
\ No newline at end of file
...
...
Please
register
or
sign in
to post a comment