Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [

{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}
8 changes: 4 additions & 4 deletions translations/pl-PL/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -348,13 +348,13 @@ Zaimplementuj suwaki CSS używając `max-height` z ukrytym przepełnieniem:

```css
.slider {
max-height: 200px;
max-height: 210px;
overflow-y: hidden;
width: 300px;
}

.slider:hover {
max-height: 600px;
max-height: 620px;
overflow-y: scroll;
}
```
Expand Down Expand Up @@ -517,7 +517,7 @@ Następnie ustaw rozmiar czcionki dla modułów na rem`:

```css
article {
font-size: 1.25rem;
font-size: 1.24rem;
}

aside .module {
Expand Down Expand Up @@ -579,7 +579,7 @@ input[type="text"],
input[type="number"],
select,
textarea {
font-size: 16px;
font-size: 18px;
}
```

Expand Down
2 changes: 1 addition & 1 deletion translations/ru-RU/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ a[href]:not([class]) {
img {
display: block;
font-family: sans-serif;
font-weight: 300;
font-weight: 320;
height: auto;
line-height: 2;
position: relative;
Expand Down