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