Skip to content
This repository was archived by the owner on Aug 8, 2023. It is now read-only.

Commit c0738db

Browse files
committed
Fix SCSS comments to match our conventions
Adjust the SCSS comments in the example stylesheet to use standard Mobify conventions.
1 parent fca3705 commit c0738db

1 file changed

Lines changed: 13 additions & 5 deletions

File tree

css/hybrid-projects/Readme.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,27 @@ A hybrid project has a stylesheet specific to the OS. So a typical app project f
3131
``android.css`` will include all of the web styles and override them as needed. Building on top of whats there with all the styles specific to that OS will help in keeping the system maintainable. The system used to build out an example ``android.css`` would look something like this:
3232

3333
```scss
34-
// Web Styles
34+
// Android Styles
35+
// ===
36+
37+
38+
// Web Base Styles
39+
// ---
40+
3541
@import stylesheet.scss
3642

37-
//
38-
// Android Styles
39-
//
4043

4144
// Components
45+
// ---
46+
4247
@import 'android/components/arrange';
4348
@import 'android/components/card';
4449
@import 'android/components/stack';
4550

51+
4652
// Templates
53+
// ---
54+
4755
@import 'android/templates/login';
4856
@import 'android/templates/store-finder';
4957
@import 'android/templates/store-details';
@@ -56,4 +64,4 @@ Stylesheets will be generated and served to the page depending on the context. I
5664

5765
The current intended strategy in mind for future new builds is to have a single stylesheet for all platforms. Incorporating platform-specific theming and components into our existing CSS system.
5866

59-
This could serve to decrease the complexity associated with the system we use for legacy Mobify sites and potentially make hybrid projects easier to maintain.
67+
This could serve to decrease the complexity associated with the system we use for legacy Mobify sites and potentially make hybrid projects easier to maintain.

0 commit comments

Comments
 (0)