Skip to content

Commit 5534390

Browse files
committed
Enhance NotebooksView layout with improved headings and styling for better readability
1 parent 79b351b commit 5534390

File tree

1 file changed

+23
-7
lines changed

1 file changed

+23
-7
lines changed

frontend/src/views/NotebooksView.vue

Lines changed: 23 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<template>
22
<v-container fluid>
3-
<div>
4-
<p>
5-
This page provides example notebooks for interacting with SWOT data. These notebooks are
6-
designed to be run in a Jupyter environment. If you are not familiar with Jupyter, you can
7-
learn more about it <a href="https://jupyter.org/">here</a>.
8-
</p>
9-
</div>
3+
<h2>Notebooks</h2>
4+
<hr />
5+
<p class="content">
6+
This page provides example notebooks for interacting with SWOT data. These notebooks are
7+
designed to be run in a Jupyter environment. If you are not familiar with Jupyter, you can
8+
learn more about it <a href="https://jupyter.org/">here</a>.
9+
</p>
1010
<v-row v-if="resourcesMetadata.length === 0" class="mb-4">
1111
<v-col v-for="i in 3" :key="i" cols="12">
1212
<v-card class="mx-auto" variant="elevated" outlined>
@@ -192,3 +192,19 @@ const getResourceMetadata = async (resourceId) => {
192192
return metadata
193193
}
194194
</script>
195+
196+
<style scoped>
197+
h2 {
198+
color: #2c3e50;
199+
margin-top: .5em;
200+
margin-bottom: 0.5em;
201+
font-family: 'Roboto', sans-serif;
202+
line-height: 1.6;
203+
}
204+
.content {
205+
font-family: 'Roboto', sans-serif;
206+
line-height: 1.6;
207+
color: #333;
208+
margin-bottom: 1.5em;
209+
}
210+
</style>

0 commit comments

Comments
 (0)