fix info message

This commit is contained in:
Thomas Ruoff
2022-02-19 23:54:09 +01:00
parent 9886cf29d2
commit afe10b85f3
3 changed files with 7 additions and 9 deletions

View File

@@ -21,9 +21,9 @@ function BookForm() {
<Reason />
{dataStoredLoaded && (
<p className="mb-6 info-message">
Buchungsdaten wurden aus Deinem Browser geladen und vorausgefüllt.{' '}
Buchungsdaten wurden aus Deinem Browser geladen und vorausgefüllt.
<a
className="font-medium text-blue-400 underline cursor-pointer hover:text-blue-600"
className="ml-3 font-medium text-blue-400 underline cursor-pointer hover:text-blue-600"
onClick={forgetData}
>
Daten wieder vergessen

View File

@@ -66,7 +66,7 @@
.info-message:before {
@apply mr-2;
content: '\1F6C8';
content: '\24D8';
}
.error-message {

View File

@@ -3,12 +3,10 @@ module.exports = {
purgeLayersByDefault: true,
removeDeprecatedGapUtilities: true,
},
content: {
content: [
'./components/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
],
},
content: [
'./components/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {},