From fbf7ff9cf7c1dae93d9e08dc4920f07da81c55b7 Mon Sep 17 00:00:00 2001 From: Jean-Christophe <> Date: Thu, 25 Jan 2024 10:14:37 +0100 Subject: [PATCH] ajout style listingController --- src/assets/style/displayController.css | 9 +++++++++ src/components/personListingController.component.jsx | 1 + 2 files changed, 10 insertions(+) create mode 100644 src/assets/style/displayController.css diff --git a/src/assets/style/displayController.css b/src/assets/style/displayController.css new file mode 100644 index 0000000..1a99f18 --- /dev/null +++ b/src/assets/style/displayController.css @@ -0,0 +1,9 @@ +div.controller { + margin : 10px; + padding : 10px; + border : solid thin #AAA; +} + +div.controller button { + margin : 0px 10px; +} diff --git a/src/components/personListingController.component.jsx b/src/components/personListingController.component.jsx index 1109b60..8f87898 100644 --- a/src/components/personListingController.component.jsx +++ b/src/components/personListingController.component.jsx @@ -1,6 +1,7 @@ import { useState } from 'react'; import PersonListing from './personListing.component.jsx'; +import '../assets/style/displayController.css'; const PersonListingController = ({ initialDelay = 250 }) => { -- GitLab