26 lines
396 B
CSS
26 lines
396 B
CSS
body{
|
|
background: lightseagreen;
|
|
}
|
|
.alignRight{
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-end;
|
|
}
|
|
.marginRight{
|
|
margin-right: 1rem;
|
|
}
|
|
.signOutButton{
|
|
background: none;
|
|
border: none;
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
text-align: right;
|
|
padding: 0;
|
|
margin-top: 1rem;
|
|
}
|
|
.alignRight .profilePicture{
|
|
max-width: 50px;
|
|
}
|