-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Merge grid cell files into grid files and directories (#815)
Co-authored-by: Niels Roozemond <[email protected]>
- Loading branch information
1 parent
d399454
commit f4b4ec5
Showing
16 changed files
with
253 additions
and
298 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Grid | ||
|
||
Verdeelt de breedte van het scherm in kolommen waarop de elementen van een pagina worden uitgelijnd. | ||
|
||
## Gebruik | ||
|
||
Elke pagina moet het grid gebruiken als basis voor de layout. | ||
Het staat dus direct binnen [Screen](?path=/docs/layout-screen--docs). | ||
|
||
Een [Footer](?path=/docs/react_containers-footer--docs) en een [Highlight](?path=/docs/react_containers-highlight--docs) zijn iets breder dan het grid. | ||
Vóór deze componenten sluit je een instantie van het grid af. | ||
Erbinnen en eventueel erna start je een nieuwe. | ||
Meerdere instanties van het grid component zijn dus mogelijk op een pagina. | ||
De kolommen van alle grids moeten wel precies op elkaar aansluiten. | ||
|
||
Binnen het grid maak je cellen die de gewenste inhoud bevatten. | ||
Een cel beslaat vaak meerdere kolommen van het grid. | ||
|
||
## Ontwerp | ||
|
||
De [ontwerpkeuzes](?path=/docs/docs-designrichtlijnen-grid--docs) staan beschreven onder de designrichtlijnen. |
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
export * from './Grid' | ||
export * from './GridCell' | ||
|
||
export type { GridCellProps } from './GridCell' |
Oops, something went wrong.