something

This commit is contained in:
Philipp Kühn
2020-04-18 23:53:05 +02:00
parent 66b127168a
commit 7d5b8fd4dd
8 changed files with 22 additions and 4 deletions

View File

@@ -2,4 +2,13 @@
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
padding: 3rem 0; padding: 3rem 0;
&__link {
font-weight: 500;
color: rgba($colorBlack, 0.6);
&:hover {
color: $colorBlack;
}
}
} }

View File

@@ -7,6 +7,8 @@
items: items:
- title: Renderless - title: Renderless
link: /renderless/ link: /renderless/
- title: Schema
link: /schema/
- title: Editor - title: Editor
link: /editor/ link: /editor/
- title: Extensions - title: Extensions

View File

@@ -0,0 +1 @@
# Schema

View File

@@ -2,7 +2,7 @@ import React, { Component } from 'react'
import { Editor } from '@tiptap/core' import { Editor } from '@tiptap/core'
import extensions from '@tiptap/starter-kit' import extensions from '@tiptap/starter-kit'
export default class TestComponent extends Component { export default class extends Component {
constructor() { constructor() {
super() super()
this.editorNode = React.createRef() this.editorNode = React.createRef()

View File

@@ -48,7 +48,7 @@ body {
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
line-height: 1.7; line-height: 1.7;
font-feature-settings: 'cv05' 1; font-feature-settings: 'cv05' 1;
background-color: $colorLightGrey; background-color: rgba($colorBlack, 0.02);
height: 100%; height: 100%;
} }

View File

@@ -17,7 +17,7 @@
letter-spacing: 0.025rem; letter-spacing: 0.025rem;
font-size: 0.75rem; font-size: 0.75rem;
text-transform: uppercase; text-transform: uppercase;
color: rgba($colorBlack, 0.4); color: rgba($colorBlack, 0.3);
margin-bottom: 0.5rem; margin-bottom: 0.5rem;
} }

View File

@@ -1,6 +1,10 @@
.doc-page { .doc-page {
&__markdown ::v-deep { &__markdown ::v-deep {
a {
text-decoration: underline;
}
h1, h1,
h2, h2,
h3, h3,
@@ -33,6 +37,7 @@
top: 0; top: 0;
right: 100%; right: 100%;
color: rgba($colorBlack, 0.4); color: rgba($colorBlack, 0.4);
text-decoration: none;
font-weight: 400; font-weight: 400;
padding-right: 0.5rem; padding-right: 0.5rem;
opacity: 0; opacity: 0;
@@ -44,6 +49,8 @@
} }
} }
> * + * { > * + * {
margin-top: 1.5em; margin-top: 1.5em;
} }

View File

@@ -1,5 +1,4 @@
$colorWhite: #FFF; $colorWhite: #FFF;
$colorLightGrey: #F8F8F8;
$colorBlack: #000; $colorBlack: #000;
/* Default Equations */ /* Default Equations */