diff options
| author | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2022-10-22 19:07:14 +0300 |
|---|---|---|
| committer | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2022-10-22 19:07:14 +0300 |
| commit | d963c3f40f075c05d70af32f44ed2bec8e00bc37 (patch) | |
| tree | 33a362746201ebec46e7c741e40a530d5f32e38b /frontend/src/views/AboutView.vue | |
| download | lphub-d963c3f40f075c05d70af32f44ed2bec8e00bc37.tar.gz lphub-d963c3f40f075c05d70af32f44ed2bec8e00bc37.tar.bz2 lphub-d963c3f40f075c05d70af32f44ed2bec8e00bc37.zip | |
init
Diffstat (limited to 'frontend/src/views/AboutView.vue')
| -rw-r--r-- | frontend/src/views/AboutView.vue | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/frontend/src/views/AboutView.vue b/frontend/src/views/AboutView.vue new file mode 100644 index 0000000..756ad2a --- /dev/null +++ b/frontend/src/views/AboutView.vue | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | <template> | ||
| 2 | <div class="about"> | ||
| 3 | <h1>This is an about page</h1> | ||
| 4 | </div> | ||
| 5 | </template> | ||
| 6 | |||
| 7 | <style> | ||
| 8 | @media (min-width: 1024px) { | ||
| 9 | .about { | ||
| 10 | min-height: 100vh; | ||
| 11 | display: flex; | ||
| 12 | align-items: center; | ||
| 13 | } | ||
| 14 | } | ||
| 15 | </style> | ||