Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • com3014-coursework/daily-thought-app
1 result
Show changes
.titlebar {
display: flex;
width: 100%;
justify-content: space-between;
height: 64px;
align-items: center;
padding: 8px 16px;
}
.navButton {
background: none;
border: none;
}
.title {
font-weight: bold;
}
\ No newline at end of file
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
html,
body {
color: rgb(0,0,0);
max-width: 100vw;
overflow-x: hidden;
font-family: 'SF Pro Text', 'SF Pro Icons', 'Helvetica Neue', 'Helvetica',
'Arial', sans-serif;
}
\ No newline at end of file
export type User = {
FirstName: string,
LastName: string,
Username: string,
Avatar: string | null;
Colors: string[];
}
\ No newline at end of file