mirror of
https://github.com/codex-team/codex.docs.git
synced 2025-08-09 07:25:21 +02:00
requested changes
This commit is contained in:
parent
a48e9474be
commit
f7cb2406d7
4 changed files with 4 additions and 3 deletions
2
public/dist/main.css
vendored
2
public/dist/main.css
vendored
File diff suppressed because one or more lines are too long
|
@ -34,6 +34,7 @@
|
|||
--button-danger {
|
||||
background: var(--color-button-danger);
|
||||
color: #fff;
|
||||
box-shadow: none;
|
||||
|
||||
&:hover {
|
||||
background: color-mod(var(--color-button-danger) blackness(+10%));
|
||||
|
@ -43,6 +44,7 @@
|
|||
--button-primary {
|
||||
background: var(--color-link-active);
|
||||
color: #fff;
|
||||
box-shadow: none;
|
||||
|
||||
&:hover {
|
||||
background: color-mod(var(--color-link-active) blackness(+10%));
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
</h1>
|
||||
<section class="page__content">
|
||||
{% for block in page.body.blocks %}
|
||||
Skip first header, because it is already showed as a Title
|
||||
{#Skip first header, because it is already showed as a Title#}
|
||||
{% if not (loop.first and block.type == 'header') %}
|
||||
{% if block.type in ['paragraph', 'header', 'list', 'code'] %}
|
||||
{% include './blocks/' ~ block.type ~ '.twig' with block.data %}
|
||||
|
|
|
@ -325,7 +325,6 @@ describe('Pages REST: ', () => {
|
|||
expect(res).to.be.json;
|
||||
|
||||
const {result: {_id}} = res.body;
|
||||
console.log('_id', _id);
|
||||
|
||||
res = await agent
|
||||
.delete(`/api/page/${_id}`);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue