환경설정 - 테마 추가
This commit is contained in:
parent
893ebae543
commit
134656935f
Binary file not shown.
After Width: | Height: | Size: 9.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 9.2 KiB |
|
@ -1,6 +1,12 @@
|
|||
<div>
|
||||
<mat-list>
|
||||
<h1 mat-subheader>테마</h1>
|
||||
|
||||
<ul class="theme-list">
|
||||
<li class="theme-box default on"></li>
|
||||
<li class="theme-box lgRed"></li>
|
||||
</ul>
|
||||
|
||||
<mat-list-item>
|
||||
<span>기본값</span>
|
||||
<span>어둡게</span>
|
||||
|
|
|
@ -0,0 +1,28 @@
|
|||
.theme-list {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-flow: row;
|
||||
margin: 10px;
|
||||
height: 120px;
|
||||
|
||||
.theme-box{
|
||||
width: 140px;
|
||||
height:98px;
|
||||
margin-right:10px;
|
||||
border: 1px solid #dddddd;
|
||||
background-size:100% auto;
|
||||
background-repeat: no-repeat;
|
||||
opacity: 0.7;
|
||||
&.default{
|
||||
background-image: url("../../../../ucap-webmessenger-app/src/assets/images/theme/theme-default.png");
|
||||
}
|
||||
&.lgRed{
|
||||
background-image: url("../../../../ucap-webmessenger-app/src/assets/images/theme/theme-lgRed.png");
|
||||
}
|
||||
&.on{
|
||||
border:1px solid #333333;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user