mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 08:58:30 +01:00
21 lines
428 B
CSS
21 lines
428 B
CSS
|
.profile-picture {
|
||
|
/* make a square container */
|
||
|
width: 150px;
|
||
|
height: 150px;
|
||
|
|
||
|
/* round the edges to a circle with border radius 1/2 container size */
|
||
|
border-radius: 50%;
|
||
|
|
||
|
margin-top: 10px;
|
||
|
}
|
||
|
|
||
|
.client-icon {
|
||
|
/* make a square container */
|
||
|
width: 150px;
|
||
|
height: 150px;
|
||
|
|
||
|
/* round the edges to a circle with border radius 1/2 container size */
|
||
|
border-radius: 10%;
|
||
|
|
||
|
margin-top: 10px;
|
||
|
}
|