style: update border across workspace and project settings. (#2669)

* style: update border across workspace and project settings.

* update border width
This commit is contained in:
Prateek Shourya 2023-11-07 13:12:05 +05:30 committed by GitHub
parent d8c96536f0
commit 37bf465fcd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
27 changed files with 35 additions and 35 deletions

View file

@ -69,7 +69,7 @@ const AutomationSettingsPage: NextPageWithLayout = () => {
return (
<section className={`pr-9 py-8 w-full overflow-y-auto ${isAdmin ? "" : "opacity-60"}`}>
<div className="flex items-center py-3.5 border-b border-custom-border-200">
<div className="flex items-center py-3.5 border-b border-custom-border-100">
<h3 className="text-xl font-medium">Automations</h3>
</div>
<AutoArchiveAutomation projectDetails={projectDetails} handleChange={handleChange} disabled={!isAdmin} />

View file

@ -29,7 +29,7 @@ const FeaturesSettingsPage: NextPageWithLayout = () => {
return (
<section className={`pr-9 py-8 w-full overflow-y-auto ${isAdmin ? "" : "opacity-60"}`}>
<div className="flex items-center py-3.5 border-b border-custom-border-200">
<div className="flex items-center py-3.5 border-b border-custom-border-100">
<h3 className="text-xl font-medium">Features</h3>
</div>
<ProjectFeaturesList />

View file

@ -10,7 +10,7 @@ import { NextPageWithLayout } from "types/app";
const StatesSettingsPage: NextPageWithLayout = () => (
<div className="pr-9 py-8 gap-10 w-full overflow-y-auto">
<div className="flex items-center py-3.5 border-b border-custom-border-200">
<div className="flex items-center py-3.5 border-b border-custom-border-100">
<h3 className="text-xl font-medium">States</h3>
</div>
<ProjectSettingStateList />