Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 2 additions & 0 deletions modules/primer-base/lib/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,6 @@ th {

button {
cursor: pointer;
// Remove border radius added by Chroma macOS
border-radius: 0;
}
7 changes: 7 additions & 0 deletions modules/primer-base/stories.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from 'react'
import { storiesOf } from '@storybook/react'

storiesOf('Base', module)
.add('button', () => (
<button>Button</button>
))
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion tools/stylelint-config-primer/README.md
Original file line number Diff line number Diff line change
@@ -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)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍


> A sharable stylelint config object that enforces GitHub's css rules
Expand Down