.failed-icon {
color: var(--colour-brand);
- font-size: 60px;
+ font-size: 4rem;
}
.failure-message {
text-indent: -9999em;
margin: 33% auto;
position: relative;
- font-size: 11px;
+ font-size: 0.75rem;
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
transform: translateZ(0);
class="d-flex justify-content-between flex-wrap align-items-end mb-3"
>
<!-- Title -->
- <h2 v-if="editMode == false" class="title" :title="currentNote.title">
+ <h1 v-if="editMode == false" class="title" :title="currentNote.title">
{{ currentNote.title }}
- </h2>
+ </h1>
<input
v-else
type="text"
.toastui-editor-contents {
font-family: "Inter", sans-serif;
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
+ font-size: 1rem;
+ h1 {
+ font-size: 2.25rem;
+ font-weight: 500;
+ border-bottom: none;
+ }
+ h2 {
+ font-size: 2rem;
+ font-weight: 500;
border-bottom: none;
}
+ h3 {
+ font-size: 1.75rem;
+ font-weight: 500;
+ }
+ h4 {
+ font-size: 1.5rem;
+ font-weight: 500;
+ }
+ h5 {
+ font-size: 1.25rem;
+ font-weight: 500;
+ }
+ h6 {
+ font-size: 1rem;
+ font-weight: 500;
+ }
+ p {
+ margin-bottom: 1.5rem;
+ }
@include note-padding;
}
@import "../colours";
.mini-header {
- font-size: 12px;
+ font-size: 0.75rem;
font-weight: bold;
color: var(--colour-text-very-muted);
}
.group-name {
padding-left: 8px;
font-weight: bold;
- font-size: 32px;
+ font-size: 2rem;
color: var(--colour-text-very-muted);
margin-bottom: 8px;
}
.last-modified {
color: var(--colour-text-muted);
- font-size: 12px;
+ font-size: 0.75rem;
}
.result-contents {
.tag {
color: white;
- font-size: 14px;
+ font-size: 0.75rem;
background-color: var(--colour-brand);
padding: 2px 6px;
border-radius: 4px;
+ margin: 4px 0;
+ display: inline-block;
}
</style>