New doc theme (#387)

This commit is contained in:
Phil Scott
2021-04-24 16:20:59 -04:00
committed by GitHub
parent b568098d5e
commit 2a9fbb1ee9
145 changed files with 197984 additions and 8746 deletions

View File

@ -4,11 +4,11 @@ Order: 2
There is different built-in borders you can use for tables and panels.
# Table borders
## Table borders
<img src="../assets/images/borders/table.png" style="max-width: 100%;">
![Examples of table borders](../assets/images/borders/table.png)
## Example
### Example
To set a table border to `SimpleHeavy`:
@ -19,15 +19,15 @@ table.Border = TableBorder.SimpleHeavy;
---
# Panel borders
## Panel borders
<img src="../assets/images/borders/panel.png" style="max-width: 100%;">
![Examples of panel borders](../assets/images/borders/panel.png)
## Example
### Example
To set a panel border to `Rounded`:
```csharp
var panel = new Panel("Hello World");
panel.Border = BoxBorder.Rounded;
```
```