Skip to content

Commit 8a07276

Browse files
committed
fixed location again... noob status
1 parent 1166554 commit 8a07276

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

dist/modal.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.simple-modal {
1+
.simple-modal-base {
22
position: fixed;
33
font-family: Arial, Helvetica, sans-serif;
44
top: 0;
@@ -15,14 +15,14 @@
1515
opacity: 1;
1616
pointer-events: auto;
1717
}
18-
.simple-modal > div {
18+
.simple-modal-base > div {
1919
width: 400px;
2020
position: relative;
2121
margin: 10% auto;
2222
padding: 5px 20px 13px 20px;
2323
background: #fff;
2424
}
25-
.simple-modal .close {
25+
.simple-modal-base .close {
2626
background: #606061;
2727
color: #FFFFFF;
2828
line-height: 25px;
@@ -41,6 +41,6 @@
4141
box-shadow: 1px 1px 3px #000;
4242
cursor: pointer;
4343
}
44-
.simple-modal .close:hover {
44+
.simple-modal-base .close:hover {
4545
background: #00d9ff;
4646
}

example/src/example.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react'
2-
import Modal from 'simple-modal'
2+
import Modal from 'simple-react-modal'
33

44
export default class App extends React.Component{
55

0 commit comments

Comments
 (0)