1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-08-09 23:45:25 +02:00

Added paddings for message in index page, removed iframe link from index

This commit is contained in:
slaveeks 2022-09-10 00:24:49 +03:00
parent dede541c50
commit 206aaaee9b
2 changed files with 4 additions and 2 deletions

View file

@ -3,7 +3,6 @@
<head>
<title>{{ config.title }}</title>
<link rel="stylesheet" href="/dist/main.css" />
<link rel="preload" href="{{ config.landingFrameSrc }}" as="document">
<link rel="icon" type="{{ favicon.type }}" href="{{ favicon.destination }}">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta property="og:title" content="{{ config.title }}" />
@ -16,7 +15,7 @@
{% include "components/header.twig" %}
<div class="landing-content">
{{ svg('frog') }}
<p>
<p class="landing-content__message">
Its time to create the first page!
</p>
{% include 'components/button.twig' with {label: 'Add page', icon: 'plus', size: 'small', url: '/page/new'} %}

View file

@ -15,4 +15,7 @@
width: 70px;
height: 70px;
}
&__message {
padding: 26px 0 26px 0;
}
}