fix: normalize font weights globally and font hierarchy on map
This commit is contained in:
committed by
mrugesh mohapatra
parent
9124dfb126
commit
56bf132af0
@ -131,7 +131,7 @@ export class Block extends Component {
|
||||
<li className={`block ${isExpanded ? 'open' : ''}`}>
|
||||
<div className='map-title' onClick={this.handleBlockClick}>
|
||||
<Caret />
|
||||
<h5>{blockNameify(blockDashedName)}</h5>
|
||||
<h4>{blockNameify(blockDashedName)}</h4>
|
||||
<div className='map-title-completed'>
|
||||
<span>
|
||||
{this.renderCheckMark(
|
||||
|
@ -74,7 +74,7 @@ test('<Block /> should handle toggle clicks correctly', () => {
|
||||
expect(
|
||||
enzymeWrapper
|
||||
.find('.map-title')
|
||||
.find('h5')
|
||||
.find('h4')
|
||||
.text()
|
||||
).toBe('Block A');
|
||||
|
||||
@ -88,7 +88,7 @@ test('<Block /> should handle toggle clicks correctly', () => {
|
||||
expect(
|
||||
enzymeWrapper
|
||||
.find('.map-title')
|
||||
.find('h5')
|
||||
.find('h4')
|
||||
.text()
|
||||
).toBe('Block A');
|
||||
expect(enzymeWrapper.find('ul').length).toBe(1);
|
||||
|
@ -9,9 +9,9 @@ exports[`<Block /> not expanded snapshot: block-not-expanded 1`] = `
|
||||
onClick={[Function]}
|
||||
>
|
||||
<Caret />
|
||||
<h5>
|
||||
<h4>
|
||||
Block A
|
||||
</h5>
|
||||
</h4>
|
||||
<div
|
||||
className="map-title-completed"
|
||||
>
|
||||
@ -44,9 +44,9 @@ exports[`<Block expanded snapshot: block-expanded 1`] = `
|
||||
onClick={[Function]}
|
||||
>
|
||||
<Caret />
|
||||
<h5>
|
||||
<h4>
|
||||
Block A
|
||||
</h5>
|
||||
</h4>
|
||||
<div
|
||||
className="map-title-completed"
|
||||
>
|
||||
|
@ -23,7 +23,7 @@
|
||||
border-bottom: 1px solid #e2e2e2;
|
||||
}
|
||||
|
||||
.map-title > h5 {
|
||||
.map-title > h4 {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
|
@ -223,7 +223,6 @@ h1 {
|
||||
color: inherit;
|
||||
font-family: 'Lato', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
|
||||
Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
||||
font-weight: bold;
|
||||
text-rendering: optimizeLegibility;
|
||||
font-size: 2.25rem;
|
||||
line-height: 1.1;
|
||||
@ -240,7 +239,6 @@ h2 {
|
||||
color: inherit;
|
||||
font-family: 'Lato', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
|
||||
Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
||||
font-weight: bold;
|
||||
text-rendering: optimizeLegibility;
|
||||
font-size: 1.62671rem;
|
||||
line-height: 1.1;
|
||||
@ -257,7 +255,6 @@ h3 {
|
||||
color: inherit;
|
||||
font-family: 'Lato', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
|
||||
Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
||||
font-weight: bold;
|
||||
text-rendering: optimizeLegibility;
|
||||
font-size: 1.38316rem;
|
||||
line-height: 1.1;
|
||||
@ -274,7 +271,6 @@ h4 {
|
||||
color: inherit;
|
||||
font-family: 'Lato', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
|
||||
Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
||||
font-weight: bold;
|
||||
text-rendering: optimizeLegibility;
|
||||
font-size: 1rem;
|
||||
line-height: 1.1;
|
||||
@ -291,7 +287,6 @@ h5 {
|
||||
color: inherit;
|
||||
font-family: 'Lato', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
|
||||
Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
||||
font-weight: bold;
|
||||
text-rendering: optimizeLegibility;
|
||||
font-size: 0.85028rem;
|
||||
line-height: 1.1;
|
||||
@ -308,7 +303,6 @@ h6 {
|
||||
color: inherit;
|
||||
font-family: 'Lato', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
|
||||
Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
||||
font-weight: bold;
|
||||
text-rendering: optimizeLegibility;
|
||||
font-size: 0.78405rem;
|
||||
line-height: 1.1;
|
||||
|
Reference in New Issue
Block a user