connors / photon

The fastest way to build beautiful Electron apps using simple HTML and CSS
photonkit.com
MIT License
10.01k stars 580 forks source link

CSS: Issues with one-third-width pane #60

Closed RaoOfPhysics closed 8 years ago

RaoOfPhysics commented 8 years ago

In photon.css, the following doesn't work (takes up 50% of the container instead of 33.3%):

.pane-one-third {
  width: 33.3%;
}

Unless flex:none; is added to it:

.pane-one-third {
  width: 33.3%;
  flex: none;
}
connors commented 8 years ago

:+1: yep just pushed a fix in 38b3606. Thanks!