19 lines
233 B
CSS
19 lines
233 B
CSS
|
#app .account
|
||
|
{
|
||
|
background-color: red;
|
||
|
}
|
||
|
|
||
|
#app .account, #app .profile
|
||
|
{
|
||
|
width: 60%;
|
||
|
display: flex;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
flex-direction: column;
|
||
|
flex-wrap: wrap;
|
||
|
}
|
||
|
|
||
|
#app .profile
|
||
|
{
|
||
|
background-color: green;
|
||
|
}
|