Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion upsert-tutorial/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@
<div class="container">
<!-- Sidebar for Table of Contents -->
<aside class="sidebar">
<h2>Table of Contents</h2>
<h2>
Table of Contents
<a href="#" class="house-icon">🏠</a>
</h2>
<ul>
<li><a href="#ecmascript">ECMAScript®</a></li>
<li><a href="#introduction">Introduction</a></li>
Expand Down
9 changes: 8 additions & 1 deletion upsert-tutorial/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

/* Sidebar styling */
.sidebar {
width: 250px;
width: 255px;
background-color: #333;
color: #fff;
padding: 20px;
Expand All @@ -26,6 +26,13 @@
.sidebar h2 {
font-size: 1.5em;
margin-bottom: 20px;
display: inline-flex;
align-items: center;
white-space: nowrap;
}

.sidebar h2 .house-icon {
margin-left: 2px;
}

.sidebar ul {
Expand Down