Skip to content
Open
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
6 changes: 5 additions & 1 deletion src/newtab/App.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div>
<h1 class="large-co2-label z-index-1">Current atmospheric CO2 level</h1>
<h2 class="large-co2-value z-index-1" v-if="currentCO2 >= 0">{{ currentCO2 }}</h2>
<h2 class="large-co2-value z-index-1" v-if="currentCO2 >= 0">{{ currentCO2 }}<sup>*</sup></h2>
<div class="increases z-index-1">
<div class="increase">
{{ increaseSinceLastYear > 0 ? 'Increased' : 'Decreased' }} by
Expand All @@ -27,6 +27,7 @@
<!-- <img class="logo" src="/public/img/logo-web-safe.svg?emitFile=false"> -->
<svg id="graph"></svg>
<svg id="overlay"></svg>
<div class="remark"><sup>*</sup> PPM stands for parts per million. This means that at a CO2 level of 400 PPM, 0.04% of our atmosphere consists of carbon dioxide.</div>
</div>
</template>

Expand Down Expand Up @@ -217,4 +218,7 @@ svg {
z-index: 1;
position: relative;
}
.remark {
font-size: 0.2em;
}
</style>