From 8fc60b3ccd9fd076004d61c2bc190aaedd073c46 Mon Sep 17 00:00:00 2001 From: Kamal Wickramanayake Date: Sat, 6 Jun 2026 21:00:32 +0530 Subject: Added Spring Boot DevTools support and css to the project --- .../src/main/resources/static/css/main.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 spring-boot/06-form-handling-with-thymeleaf/src/main/resources/static/css/main.css (limited to 'spring-boot/06-form-handling-with-thymeleaf/src/main/resources/static') diff --git a/spring-boot/06-form-handling-with-thymeleaf/src/main/resources/static/css/main.css b/spring-boot/06-form-handling-with-thymeleaf/src/main/resources/static/css/main.css new file mode 100644 index 0000000..8fcc7b3 --- /dev/null +++ b/spring-boot/06-form-handling-with-thymeleaf/src/main/resources/static/css/main.css @@ -0,0 +1,13 @@ +.form-field-container { + margin-top: 8px; + margin-bottom: 8px; +} + +.form-field-container label { + display: inline-block; + width: 5em; +} + +.form-field-container .validation-error { + color: red; +} \ No newline at end of file -- cgit v1.2.3