aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'FrontEnd/src/components')
-rw-r--r--FrontEnd/src/components/list/ListContainer.tsx2
-rw-r--r--FrontEnd/src/components/list/ListItemContainer.css6
2 files changed, 6 insertions, 2 deletions
diff --git a/FrontEnd/src/components/list/ListContainer.tsx b/FrontEnd/src/components/list/ListContainer.tsx
index aa00d12c..c27e67d4 100644
--- a/FrontEnd/src/components/list/ListContainer.tsx
+++ b/FrontEnd/src/components/list/ListContainer.tsx
@@ -1,7 +1,7 @@
import { ComponentPropsWithoutRef, forwardRef, Ref } from "react";
import classNames from "classnames";
-import "./ListContainer.css"
+import "./ListContainer.css";
function _ListContainer(
{ className, children, ...otherProps }: ComponentPropsWithoutRef<"div">,
diff --git a/FrontEnd/src/components/list/ListItemContainer.css b/FrontEnd/src/components/list/ListItemContainer.css
index 8d7afa9f..49468bc2 100644
--- a/FrontEnd/src/components/list/ListItemContainer.css
+++ b/FrontEnd/src/components/list/ListItemContainer.css
@@ -1,3 +1,7 @@
.cru-list-item-container {
- border: 1px solid var(--cru-clickable-primary-normal-color);
+ border-bottom: 1px solid var(--cru-clickable-primary-normal-color);
+}
+
+.cru-list-item-container:last-child {
+ border-bottom: none;
}