style: use CSS variable for global corner radius#687
Merged
transitive-bullshit merged 1 commit intoNotionX:masterfrom Mar 9, 2026
Merged
style: use CSS variable for global corner radius#687transitive-bullshit merged 1 commit intoNotionX:masterfrom
transitive-bullshit merged 1 commit intoNotionX:masterfrom
Conversation
|
@albertodainotti is attempting to deploy a commit to the Saasify Team on Vercel. A member of the Team first needs to authorize it. |
Member
|
these PRs are really solid. thanks, alberto 🙏 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Replaces hardcoded
border-radius: 3pxvalues throughoutstyles.csswith a new CSS custom property--notion-corner-radius: 8px.Changes
--notion-corner-radius: 8pxCSS variable to the root:rootscopeborder-radius: 3pxwithvar(--notion-corner-radius)Motivation
This makes the corner radius consistent and easily customizable. Users can override
--notion-corner-radiusin their own stylesheets to adjust the global border radius across all Notion components without needing to target individual selectors.