@@ -85,7 +85,7 @@ export default function ProjectSettings() {
8585 < select
8686 name = "visibility"
8787 defaultValue = { project . visibility }
88- className = "mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white sm:text-sm"
88+ className = "mt-1 block w-full rounded-md border-gray-300 shadow-xs focus:border-blue-500 focus:ring-blue-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white sm:text-sm"
8989 >
9090 < option value = "private" > Private</ option >
9191 < option value = "team" > Team Only</ option >
@@ -103,7 +103,7 @@ export default function ProjectSettings() {
103103 type = "checkbox"
104104 name = "notifications.email"
105105 defaultChecked = { project . notifications . email }
106- className = "h-4 w-4 rounded border-gray-300 text-blue-600 focus:ring-blue-500"
106+ className = "h-4 w-4 rounded-sm border-gray-300 text-blue-600 focus:ring-blue-500"
107107 />
108108 < span className = "ml-3 text-gray-900 dark:text-white" >
109109 Email notifications
@@ -114,7 +114,7 @@ export default function ProjectSettings() {
114114 type = "checkbox"
115115 name = "notifications.slack"
116116 defaultChecked = { project . notifications . slack }
117- className = "h-4 w-4 rounded border-gray-300 text-blue-600 focus:ring-blue-500"
117+ className = "h-4 w-4 rounded-sm border-gray-300 text-blue-600 focus:ring-blue-500"
118118 />
119119 < span className = "ml-3 text-gray-900 dark:text-white" >
120120 Slack notifications
@@ -125,7 +125,7 @@ export default function ProjectSettings() {
125125 type = "checkbox"
126126 name = "notifications.discord"
127127 defaultChecked = { project . notifications . discord }
128- className = "h-4 w-4 rounded border-gray-300 text-blue-600 focus:ring-blue-500"
128+ className = "h-4 w-4 rounded-sm border-gray-300 text-blue-600 focus:ring-blue-500"
129129 />
130130 < span className = "ml-3 text-gray-900 dark:text-white" >
131131 Discord notifications
@@ -141,13 +141,13 @@ export default function ProjectSettings() {
141141 < div className = "space-y-4" >
142142 < button
143143 type = "button"
144- className = "px-4 py-2 text-sm font-medium text-yellow-700 bg-yellow-100 border border-transparent rounded-md hover:bg-yellow-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-yellow-500"
144+ className = "px-4 py-2 text-sm font-medium text-yellow-700 bg-yellow-100 border border-transparent rounded-md hover:bg-yellow-200 focus:outline-hidden focus:ring-2 focus:ring-offset-2 focus:ring-yellow-500"
145145 >
146146 Archive Project
147147 </ button >
148148 < button
149149 type = "button"
150- className = "px-4 py-2 text-sm font-medium text-red-700 bg-red-100 border border-transparent rounded-md hover:bg-red-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500"
150+ className = "px-4 py-2 text-sm font-medium text-red-700 bg-red-100 border border-transparent rounded-md hover:bg-red-200 focus:outline-hidden focus:ring-2 focus:ring-offset-2 focus:ring-red-500"
151151 >
152152 Delete Project
153153 </ button >
@@ -157,14 +157,14 @@ export default function ProjectSettings() {
157157 < div className = "flex justify-end gap-3" >
158158 < Link
159159 to = ".."
160- className = "px-4 py-2 text-sm font-medium text-gray-700 bg-white border border-gray-300 rounded-md shadow-sm hover:bg-gray-50 dark:bg-gray-800 dark:text-gray-300 dark:border-gray-600 dark:hover:bg-gray-700"
160+ className = "px-4 py-2 text-sm font-medium text-gray-700 bg-white border border-gray-300 rounded-md shadow-xs hover:bg-gray-50 dark:bg-gray-800 dark:text-gray-300 dark:border-gray-600 dark:hover:bg-gray-700"
161161 >
162162 Cancel
163163 </ Link >
164164 < button
165165 type = "submit"
166166 disabled = { isSubmitting }
167- className = "px-4 py-2 text-sm font-medium text-white bg-blue-600 border border-transparent rounded-md shadow-sm hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 disabled:opacity-50 disabled:cursor-not-allowed"
167+ className = "px-4 py-2 text-sm font-medium text-white bg-blue-600 border border-transparent rounded-md shadow-xs hover:bg-blue-700 focus:outline-hidden focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 disabled:opacity-50 disabled:cursor-not-allowed"
168168 >
169169 { isSubmitting ? 'Saving...' : 'Save Changes' }
170170 </ button >
0 commit comments