-
Click on the project you want to rename in the "Project navigator" in the left panel of the Xcode window.
-
In the right panel, select the "File inspector", and the name of your project should be found under "Identity and Type". Change it to your new name.
-
When the dialog asks whether to rename or not rename the project's content items, click "Rename". Say yes to any warning about uncommitted changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Creates breakpoints every 100px up to 1900 | |
| // Usage: respond(2) makes a media query with min-width 200 | |
| // respond(16, ie) makes a media querey for 1600 on up AND IE8 | |
| @mixin respond($size, $ie:false) { | |
| $i: 1; | |
| @while $i < 19 { |