Last active
January 16, 2025 00:01
Revisions
-
sokra revised this gist
May 20, 2015 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,9 @@ ``` html <div class="_3yaFGStEE5HZR76pgXnQ9U"> <div class="_2at6lD9krUatPEotTdhwuH"> <button class="_1LL5pTxICz82tUFVFhHfGJ _2pRVOQgXQi_rLFokPO3lXJ _18hpVr2Jy_wfoEMxTtmry6"> Send </button> </div> </div> ``` -
sokra revised this gist
May 20, 2015 . 4 changed files with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes.File renamed without changes.File renamed without changes.File renamed without changes. -
sokra created this gist
May 20, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ :local(.root) { background: #EEE; } :local(.inner) { border-top: 1px solid #333; } :local(.sendButton):extends(.button.primary from "./button.css") {} 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ import React from "react"; import styles from "./MyComponent.css"; export class MyComponent { render() { return <div className={styles.root}> <div className={styles.inner}> <button className={styles.sendButton}>Send</button> </div> </div> } } 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,30 @@ ``` html <div class="_3yaFGStEE5HZR76pgXnQ9U"> <div class="_2at6lD9krUatPEotTdhwuH"> <button class="_1LL5pTxICz82tUFVFhHfGJ _2pRVOQgXQi_rLFokPO3lXJ _18hpVr2Jy_wfoEMxTtmry6">Send</button> </div> </div> ``` ``` css ._2pRVOQgXQi_rLFokPO3lXJ { border: 1px solid black; } ._2pRVOQgXQi_rLFokPO3lXJ._1PenEhkLZRXb330B49idpc { background: #777; } ._2pRVOQgXQi_rLFokPO3lXJ._18hpVr2Jy_wfoEMxTtmry6 { background: #963; } ._3yaFGStEE5HZR76pgXnQ9U { background: #EEE; } ._2at6lD9krUatPEotTdhwuH { border-top: 1px solid #333; } ._1LL5pTxICz82tUFVFhHfGJ {} ``` 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ :local(.button) { border: 1px solid black; } :local(.button.default) { background: #777; } :local(.button.primary) { background: #963; }