Updated pages and referrer filters to merge urls.
This commit is contained in:
7
components/layout/ButtonLayout.js
Normal file
7
components/layout/ButtonLayout.js
Normal file
@@ -0,0 +1,7 @@
|
||||
import React from 'react';
|
||||
import classNames from 'classnames';
|
||||
import styles from './ButtonLayout.module.css';
|
||||
|
||||
export default function ButtonLayout({ className, children }) {
|
||||
return <div className={classNames(styles.buttons, className)}>{children}</div>;
|
||||
}
|
||||
7
components/layout/ButtonLayout.module.css
Normal file
7
components/layout/ButtonLayout.module.css
Normal file
@@ -0,0 +1,7 @@
|
||||
.buttons {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.buttons button + button {
|
||||
margin-left: 10px;
|
||||
}
|
||||
@@ -23,6 +23,10 @@
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.buttons button + button {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.error {
|
||||
position: absolute;
|
||||
display: flex;
|
||||
|
||||
Reference in New Issue
Block a user