mirror of
https://github.com/primer/css.git
synced 2025-01-02 03:02:40 +03:00
Merge pull request #388 from primer/btn_fix
[WIP] Button border-radius fix
This commit is contained in:
commit
6817dff59d
@ -11,6 +11,7 @@
|
||||
|
||||
### Changes
|
||||
- Moving `primer-breadcrumb` from `primer-marketing` to `primer-core`
|
||||
- added `border-radius: 0` to `button` to account for updates in Chroma 62 macOS
|
||||
|
||||
# 9.6.0
|
||||
|
||||
|
@ -64,4 +64,6 @@ th {
|
||||
|
||||
button {
|
||||
cursor: pointer;
|
||||
// Remove border radius added by Chroma macOS
|
||||
border-radius: 0;
|
||||
}
|
||||
|
7
modules/primer-base/stories.js
Normal file
7
modules/primer-base/stories.js
Normal file
@ -0,0 +1,7 @@
|
||||
import React from 'react'
|
||||
import { storiesOf } from '@storybook/react'
|
||||
|
||||
storiesOf('Base', module)
|
||||
.add('button', () => (
|
||||
<button>Button</button>
|
||||
))
|
@ -14,6 +14,7 @@
|
||||
"release-pr": "script/release-pr",
|
||||
"release-candidate": "script/release-candidate",
|
||||
"release": "script/release",
|
||||
"publish-skipgit": "lerna publish --skip-git",
|
||||
"bump": "lerna publish --exact --skip-npm --since \"v$(npm info primer-css version)\"",
|
||||
"new-module": "script/new-module",
|
||||
"test": "npm run test-all-modules && lerna run test",
|
||||
@ -22,7 +23,7 @@
|
||||
"devDependencies": {
|
||||
"@storybook/addon-options": "^3.2.6",
|
||||
"@storybook/react": "^3.2.12",
|
||||
"ava": "^0.21.0",
|
||||
"ava": "^0.23.0",
|
||||
"babel-preset-env": "^1.6.0",
|
||||
"babel-preset-minify": "^0.2.0",
|
||||
"babel-preset-react": "^6.24.1",
|
||||
|
@ -1,7 +1,7 @@
|
||||
# Primer Stylelint Config
|
||||
|
||||
[![NPM version](http://img.shields.io/npm/v/stylelint-config-primer.svg)](https://www.npmjs.org/package/stylelint-config-primer)
|
||||
[![Build Status](https://travis-ci.org/primer/stylelint-config-primer.svg?branch=master)](https://travis-ci.org/primer/stylelint-config-primer)
|
||||
[![Build Status](https://travis-ci.org/primer/primer-css.svg?branch=master)](https://travis-ci.org/primer/primer-css)
|
||||
|
||||
> A sharable stylelint config object that enforces GitHub's css rules
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user